We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7be218 commit 0633c94Copy full SHA for 0633c94
CHANGELOG.md
@@ -686,9 +686,9 @@ use async_std::prelude::*;
686
use async_std::task;
687
688
task::spawn(async {
689
- let x = fibonnacci(1000); // Do expensive work
+ let x = fibonacci(1000); // Do expensive work
690
task::yield_now().await; // Allow other tasks to run
691
- x + fibonnacci(100) // Do more work
+ x + fibonacci(100) // Do more work
692
})
693
```
694
src/stream/successors.rs
@@ -42,7 +42,7 @@ pin_project! {
42
///
43
/// This stream is constructed by [`successors`] function
44
45
- /// [`successors`]: fn.succssors.html
+ /// [`successors`]: fn.successors.html
46
#[cfg(feature = "unstable")]
47
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
48
#[derive(Debug)]
0 commit comments