File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ use std::task::{Context, Poll};
33
44use futures_core:: Stream ;
55
6- /// A stream merging two streams.
6+ /// A stream that merges two other streams into a single stream .
77///
88/// This stream is returned by [`Stream::merge`].
99///
10- /// [`Stream::merge`]:
10+ /// [`Stream::merge`]: trait.Stream.html#method.merge
1111#[ derive( Debug ) ]
1212pub struct Merge < L , R > {
1313 left : L ,
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ mod for_each;
3434mod fuse;
3535mod inspect;
3636mod map;
37- mod merge;
3837mod min_by;
3938mod next;
4039mod nth;
@@ -88,6 +87,8 @@ cfg_if! {
8887
8988cfg_if ! {
9089 if #[ cfg( any( feature = "unstable" , feature = "docs" ) ) ] {
90+ mod merge;
91+
9192 use std:: pin:: Pin ;
9293
9394 use crate :: future:: Future ;
You can’t perform that action at this time.
0 commit comments