Skip to content

Commit 8173850

Browse files
authored
Clarify this crate does not require unstable features (#37)
1 parent d346ad2 commit 8173850

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Asynchronous stream of elements.
44

55
Provides two macros, `stream!` and `try_stream!`, allowing the caller to
66
define asynchronous streams of elements. These are implemented using `async`
7-
& `await` notation. The `stream!` macro works without unstable features.
7+
& `await` notation. This crate works without unstable features.
88

99
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

async-stream/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Asynchronous stream of elements.
44

55
Provides two macros, `stream!` and `try_stream!`, allowing the caller to
66
define asynchronous streams of elements. These are implemented using `async`
7-
& `await` notation. The `stream!` macro works without unstable features.
7+
& `await` notation. This crate works without unstable features.
88

99
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

async-stream/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//!
1212
//! Provides two macros, `stream!` and `try_stream!`, allowing the caller to
1313
//! define asynchronous streams of elements. These are implemented using `async`
14-
//! & `await` notation. The `stream!` macro works without unstable features.
14+
//! & `await` notation. This crate works without unstable features.
1515
//!
1616
//! The `stream!` macro returns an anonymous type implementing the [`Stream`]
1717
//! trait. The `Item` associated type is the type of the values yielded from the

0 commit comments

Comments
 (0)