From 81bfb057063eb246bc09bb9ace262529febbcb6f Mon Sep 17 00:00:00 2001 From: Wolf Thomsen Date: Sat, 14 May 2022 23:50:13 +0200 Subject: [PATCH] Fix small typo (#73) --- async-stream/README.md | 2 +- async-stream/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/async-stream/README.md b/async-stream/README.md index 1c16226..ed28ea8 100644 --- a/async-stream/README.md +++ b/async-stream/README.md @@ -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`. The -`try_stream!` macro supports using `?` notiation as part of the +`try_stream!` macro supports using `?` notation as part of the implementation. ## Usage diff --git a/async-stream/src/lib.rs b/async-stream/src/lib.rs index d2c78f9..bab0954 100644 --- a/async-stream/src/lib.rs +++ b/async-stream/src/lib.rs @@ -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`. The -//! `try_stream!` macro supports using `?` notiation as part of the +//! `try_stream!` macro supports using `?` notation as part of the //! implementation. //! //! # Usage