Skip to content

Commit d7b3a55

Browse files
committed
cargo fmt
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent 25b75ea commit d7b3a55

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/stream/stream/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121
//! # }) }
2222
//! ```
2323
24-
mod min_by;
25-
mod any;
2624
mod all;
27-
mod take;
25+
mod any;
26+
mod min_by;
2827
mod next;
28+
mod take;
2929

3030
pub use take::Take;
3131

32+
use all::AllFuture;
33+
use any::AnyFuture;
3234
use min_by::MinByFuture;
3335
use next::NextFuture;
34-
use any::AnyFuture;
35-
use all::AllFuture;
3636

3737
use std::cmp::Ordering;
3838
use std::marker::PhantomData;

0 commit comments

Comments
 (0)