Skip to content

Commit

Permalink
Fix documentation for struct Zeroes (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrTerstappen committed Mar 16, 2024
1 parent eb70fdf commit 61550cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1032,9 +1032,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: Block,
block_idx: usize,
Expand Down

0 comments on commit 61550cd

Please sign in to comment.