Skip to content

Commit 8a198e9

Browse files
committed
Format
1 parent 2c4dfa1 commit 8a198e9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,10 @@ impl<K: Eq + Hash + Clone, V> SieveCache<K, V> {
428428
// until it finds an item to evict after clearing bits.
429429
if item.is_none() {
430430
let item = self.evict();
431-
debug_assert!(item.is_some(), "evict() must remove one entry when at capacity");
431+
debug_assert!(
432+
item.is_some(),
433+
"evict() must remove one entry when at capacity"
434+
);
432435
}
433436
}
434437

0 commit comments

Comments
 (0)