Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: clippy::doc_lazy_continuation #192

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/future/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
//!
//! - `future::TryMerge`: wait for all futures in the set to complete _successfully_, or return on the first error.
//! - `future::RaceOk`: wait for the first _successful_ future in the set to
//! complete, or return an `Err` if *no* futures complete successfully.
//! complete, or return an `Err` if *no* futures complete successfully.
//!
#[doc(inline)]
#[cfg(feature = "alloc")]
Expand Down
8 changes: 4 additions & 4 deletions src/stream/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
//! iterators:
//!
//! - `merge`: combine multiple iterators into a single iterator, where the new
//! iterator yields an item as soon as one is available from one of the
//! underlying iterators.
//! iterator yields an item as soon as one is available from one of the
//! underlying iterators.
//! - `zip`: combine multiple iterators into an iterator of pairs. The
//! underlying iterators will be awaited concurrently.
//! underlying iterators will be awaited concurrently.
//! - `chain`: iterate over multiple iterators in sequence. The next iterator in
//! the sequence won't start until the previous iterator has finished.
//! the sequence won't start until the previous iterator has finished.
//!
//! ## Futures
//!
Expand Down
Loading