Skip to content

Commit 0633c94

Browse files
committed
Fix typos
1 parent b7be218 commit 0633c94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -686,9 +686,9 @@ use async_std::prelude::*;
686686
use async_std::task;
687687

688688
task::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

Diff for: src/stream/successors.rs

+1-1
Original file line numberDiff line numberDiff 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)]

0 commit comments

Comments
 (0)