Skip to content

Commit

Permalink
Fix small typo (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolthom authored May 14, 2022
1 parent 6b2725f commit 81bfb05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion async-stream/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The `stream!` macro returns an anonymous type implementing the [`Stream`]
trait. The `Item` associated type is the type of the values yielded from the
stream. The `try_stream!` also returns an anonymous type implementing the
[`Stream`] trait, but the `Item` associated type is `Result<T, Error>`. The
`try_stream!` macro supports using `?` notiation as part of the
`try_stream!` macro supports using `?` notation as part of the
implementation.

## Usage
Expand Down
2 changes: 1 addition & 1 deletion async-stream/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//! trait. The `Item` associated type is the type of the values yielded from the
//! stream. The `try_stream!` also returns an anonymous type implementing the
//! [`Stream`] trait, but the `Item` associated type is `Result<T, Error>`. The
//! `try_stream!` macro supports using `?` notiation as part of the
//! `try_stream!` macro supports using `?` notation as part of the
//! implementation.
//!
//! # Usage
Expand Down

0 comments on commit 81bfb05

Please sign in to comment.