Skip to content

Commit

Permalink
Update map.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
JustForFun88 committed May 2, 2022
1 parent fb7e3b1 commit 5e3df22
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3151,7 +3151,9 @@ impl<K, V> FusedIterator for ValuesMut<'_, K, V> {}

impl<K, V: Debug> fmt::Debug for ValuesMut<'_, K, V> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.inner.iter().map(|(_, val)| val)).finish()
f.debug_list()
.entries(self.inner.iter().map(|(_, val)| val))
.finish()
}
}

Expand Down

0 comments on commit 5e3df22

Please sign in to comment.