Skip to content

Commit 5e3df22

Browse files
committed
Update map.rs
1 parent fb7e3b1 commit 5e3df22

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/map.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3151,7 +3151,9 @@ impl<K, V> FusedIterator for ValuesMut<'_, K, V> {}
31513151

31523152
impl<K, V: Debug> fmt::Debug for ValuesMut<'_, K, V> {
31533153
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
3154-
f.debug_list().entries(self.inner.iter().map(|(_, val)| val)).finish()
3154+
f.debug_list()
3155+
.entries(self.inner.iter().map(|(_, val)| val))
3156+
.finish()
31553157
}
31563158
}
31573159

0 commit comments

Comments
 (0)