Skip to content

Commit 898ceeb

Browse files
committed
Fix up two minor diffs to hashbrown
1 parent 6846066 commit 898ceeb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/map.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,7 +1594,6 @@ impl<'a, K, V, S> RawEntryMut<'a, K, V, S> {
15941594
/// ```
15951595
/// use griddle::HashMap;
15961596
///
1597-
///
15981597
/// let mut map: HashMap<&str, u32> = HashMap::new();
15991598
///
16001599
/// map.raw_entry_mut()
@@ -1778,7 +1777,6 @@ impl<'a, K, V, S> RawVacantEntryMut<'a, K, V, S> {
17781777
let elem = self.table.insert(hasher.finish(), (key, value), |k| {
17791778
make_hash(hash_builder, &k.0)
17801779
});
1781-
17821780
RawOccupiedEntryMut {
17831781
elem,
17841782
table: self.table,

0 commit comments

Comments
 (0)