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: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1404,9 +1404,9 @@ impl<'a> Iterator for Ones<'a> {
// Ones will continue to return None once it first returns None.
impl<'a> FusedIterator for Ones<'a> {}

/// An iterator producing the indices of the set bit in a set.
/// An iterator producing the indices of the unset bit in a set.
///
/// This struct is created by the [`FixedBitSet::ones`] method.
/// This struct is created by the [`FixedBitSet::zeroes`] method.
pub struct Zeroes<'a> {
bitset: usize,
block_idx: usize,
Expand Down
Loading