Skip to content

Commit

Permalink
Merge pull request #1082 from jayvdb/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
Keruspe authored Aug 20, 2024
2 parents 3074209 + 0633c94 commit 74dbd3a
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 74dbd3a

Please sign in to comment.