Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb committed Aug 20, 2024
1 parent b7be218 commit 0633c94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -686,9 +686,9 @@ use async_std::prelude::*;
use async_std::task;

task::spawn(async {
let x = fibonnacci(1000); // Do expensive work
let x = fibonacci(1000); // Do expensive work
task::yield_now().await; // Allow other tasks to run
x + fibonnacci(100) // Do more work
x + fibonacci(100) // Do more work
})
```

Expand Down
2 changes: 1 addition & 1 deletion src/stream/successors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pin_project! {
///
/// This stream is constructed by [`successors`] function
///
/// [`successors`]: fn.succssors.html
/// [`successors`]: fn.successors.html
#[cfg(feature = "unstable")]
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
#[derive(Debug)]
Expand Down

0 comments on commit 0633c94

Please sign in to comment.