Skip to content

Commit 04342c7

Browse files
committed
docs
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent b601bcf commit 04342c7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/stream/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,7 @@ cfg_if! {
4545
pub use extend::Extend;
4646
pub use from_stream::FromStream;
4747
pub use into_stream::IntoStream;
48+
49+
pub use stream::Merge;
4850
}
4951
}

src/stream/stream/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,8 @@ extension_trait! {
11551155
#[doc = r#"
11561156
Combines multiple streams into a single stream of all their outputs.
11571157
1158-
This macro is only usable inside of async functions, closures, and blocks.
1158+
Items are yielded as soon as they're received, and the stream continues yield until both
1159+
streams have been exhausted.
11591160
11601161
# Examples
11611162

0 commit comments

Comments
 (0)