Skip to content

Commit 61550cd

Browse files
authored
Fix documentation for struct Zeroes (#107)
1 parent eb70fdf commit 61550cd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,9 +1032,9 @@ impl<'a> Iterator for Ones<'a> {
10321032
// Ones will continue to return None once it first returns None.
10331033
impl<'a> FusedIterator for Ones<'a> {}
10341034

1035-
/// An iterator producing the indices of the set bit in a set.
1035+
/// An iterator producing the indices of the unset bit in a set.
10361036
///
1037-
/// This struct is created by the [`FixedBitSet::ones`] method.
1037+
/// This struct is created by the [`FixedBitSet::zeroes`] method.
10381038
pub struct Zeroes<'a> {
10391039
bitset: Block,
10401040
block_idx: usize,

0 commit comments

Comments
 (0)