Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion roaring/src/bitmap/store/array_store/visitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ impl VecWriter {

pub fn into_inner(self) -> Vec<u16> {
// Consider shrinking the vec here.
// Exacty len could be too aggressive. Len rounded up to next power of 2?
// Exactly len could be too aggressive. Len rounded up to next power of 2?
// Related, but not exact issue: https://github.com/RoaringBitmap/roaring-rs/issues/136
self.vec
}
Expand Down
8 changes: 4 additions & 4 deletions roaring/src/treemap/multiops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ where
(key, bitmap)
}
None => {
let poped = PeekMut::pop(peek);
(poped.key, poped.bitmap)
let popped = PeekMut::pop(peek);
(popped.key, popped.bitmap)
}
};

Expand Down Expand Up @@ -209,8 +209,8 @@ where
(key, bitmap)
}
None => {
let poped = PeekMut::pop(peek);
(poped.key, poped.bitmap)
let popped = PeekMut::pop(peek);
(popped.key, popped.bitmap)
}
};

Expand Down