Skip to content
Open
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
4 changes: 3 additions & 1 deletion src/exactly_one_err.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ use either::Either;

use crate::size_hint;

/// Iterator returned for the error case of `Itertools::exactly_one()`
/// Iterator returned for the error case of `Itertools`
/// [`exactly_one()`](crate::Itertools::exactly_one) and
/// [`at_most_one()`](crate::Itertools::at_most_one).
/// This iterator yields exactly the same elements as the input iterator.
///
/// During the execution of `exactly_one` the iterator must be mutated. This wrapper
Expand Down
Loading