Skip to content

Commit 1425c21

Browse files
authored
Merge pull request #192 from crepererum/crepererum/fix_clippy
fix: `clippy::doc_lazy_continuation`
2 parents 3d15eed + c99407c commit 1425c21

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/future/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
//!
6767
//! - `future::TryMerge`: wait for all futures in the set to complete _successfully_, or return on the first error.
6868
//! - `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.
7070
//!
7171
#[doc(inline)]
7272
#[cfg(feature = "alloc")]

src/stream/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
//! iterators:
3131
//!
3232
//! - `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.
3535
//! - `zip`: combine multiple iterators into an iterator of pairs. The
36-
//! underlying iterators will be awaited concurrently.
36+
//! underlying iterators will be awaited concurrently.
3737
//! - `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.
3939
//!
4040
//! ## Futures
4141
//!

0 commit comments

Comments
 (0)