Skip to content

Commit 806bd09

Browse files
committed
tweak comment
1 parent 8769f4c commit 806bd09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • turbopack/crates/turbo-persistence/src

turbopack/crates/turbo-persistence/src/db.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ impl FoundBitset {
135135
self.words[wi] |= 1 << bi;
136136
}
137137

138-
/// Returns the number of bits that are set (i.e. not yet found).
138+
/// Returns the number of bits that are set.
139139
pub(crate) fn count_ones(&self) -> usize {
140140
self.words.iter().map(|w| w.count_ones()).sum::<u32>() as usize
141141
}

0 commit comments

Comments
 (0)