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::*;
686686use async_std :: task;
687687
688688task :: spawn (async {
689- let x = fibonnacci (1000 ); // Do expensive work
689+ let x = fibonacci (1000 ); // Do expensive work
690690 task :: yield_now (). await ; // Allow other tasks to run
691- x + fibonnacci (100 ) // Do more work
691+ x + fibonacci (100 ) // Do more work
692692})
693693```
694694
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ pin_project! {
4242 ///
4343 /// This stream is constructed by [`successors`] function
4444 ///
45- /// [`successors`]: fn.succssors .html
45+ /// [`successors`]: fn.successors .html
4646 #[ cfg( feature = "unstable" ) ]
4747 #[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
4848 #[ derive( Debug ) ]
You can’t perform that action at this time.
0 commit comments