Skip to content

Commit 81bfb05

Browse files
authored
Fix small typo (#73)
1 parent 6b2725f commit 81bfb05

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

async-stream/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `stream!` macro returns an anonymous type implementing the [`Stream`]
1010
trait. The `Item` associated type is the type of the values yielded from the
1111
stream. The `try_stream!` also returns an anonymous type implementing the
1212
[`Stream`] trait, but the `Item` associated type is `Result<T, Error>`. The
13-
`try_stream!` macro supports using `?` notiation as part of the
13+
`try_stream!` macro supports using `?` notation as part of the
1414
implementation.
1515

1616
## Usage

async-stream/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! trait. The `Item` associated type is the type of the values yielded from the
1717
//! stream. The `try_stream!` also returns an anonymous type implementing the
1818
//! [`Stream`] trait, but the `Item` associated type is `Result<T, Error>`. The
19-
//! `try_stream!` macro supports using `?` notiation as part of the
19+
//! `try_stream!` macro supports using `?` notation as part of the
2020
//! implementation.
2121
//!
2222
//! # Usage

0 commit comments

Comments
 (0)