From 0df6741a28abf4d200dd85339b8fb314ded1985f Mon Sep 17 00:00:00 2001 From: Arthur Charron Date: Tue, 30 Sep 2025 10:14:07 +0900 Subject: [PATCH] docs: Fix the docstring for the struct `Zeroes` --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index fb4f764..139ffb3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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,