File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 66
66
//!
67
67
//! - `future::TryMerge`: wait for all futures in the set to complete _successfully_, or return on the first error.
68
68
//! - `future::RaceOk`: wait for the first _successful_ future in the set to
69
- //! complete, or return an `Err` if *no* futures complete successfully.
69
+ //! complete, or return an `Err` if *no* futures complete successfully.
70
70
//!
71
71
#[ doc( inline) ]
72
72
#[ cfg( feature = "alloc" ) ]
Original file line number Diff line number Diff line change 30
30
//! iterators:
31
31
//!
32
32
//! - `merge`: combine multiple iterators into a single iterator, where the new
33
- //! iterator yields an item as soon as one is available from one of the
34
- //! underlying iterators.
33
+ //! iterator yields an item as soon as one is available from one of the
34
+ //! underlying iterators.
35
35
//! - `zip`: combine multiple iterators into an iterator of pairs. The
36
- //! underlying iterators will be awaited concurrently.
36
+ //! underlying iterators will be awaited concurrently.
37
37
//! - `chain`: iterate over multiple iterators in sequence. The next iterator in
38
- //! the sequence won't start until the previous iterator has finished.
38
+ //! the sequence won't start until the previous iterator has finished.
39
39
//!
40
40
//! ## Futures
41
41
//!
You can’t perform that action at this time.
0 commit comments