File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -686,9 +686,9 @@ use async_std::prelude::*;
686
686
use async_std :: task;
687
687
688
688
task :: spawn (async {
689
- let x = fibonnacci (1000 ); // Do expensive work
689
+ let x = fibonacci (1000 ); // Do expensive work
690
690
task :: yield_now (). await ; // Allow other tasks to run
691
- x + fibonnacci (100 ) // Do more work
691
+ x + fibonacci (100 ) // Do more work
692
692
})
693
693
```
694
694
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ pin_project! {
42
42
///
43
43
/// This stream is constructed by [`successors`] function
44
44
///
45
- /// [`successors`]: fn.succssors .html
45
+ /// [`successors`]: fn.successors .html
46
46
#[ cfg( feature = "unstable" ) ]
47
47
#[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
48
48
#[ derive( Debug ) ]
You can’t perform that action at this time.
0 commit comments