We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8769f4c commit 806bd09Copy full SHA for 806bd09
1 file changed
turbopack/crates/turbo-persistence/src/db.rs
@@ -135,7 +135,7 @@ impl FoundBitset {
135
self.words[wi] |= 1 << bi;
136
}
137
138
- /// Returns the number of bits that are set (i.e. not yet found).
+ /// Returns the number of bits that are set.
139
pub(crate) fn count_ones(&self) -> usize {
140
self.words.iter().map(|w| w.count_ones()).sum::<u32>() as usize
141
0 commit comments