Skip to content

Commit fa1e92d

Browse files
committed
rustfmt
1 parent b36367a commit fa1e92d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/indexmap.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -871,16 +871,16 @@ impl<K, V, const N: usize> Iterator for IntoIter<K, V, N> {
871871
}
872872

873873
impl<K, V, S, const N: usize> IntoIterator for IndexMap<K, V, S, N>
874-
where
875-
K: Eq + Hash,
876-
S: BuildHasher,
874+
where
875+
K: Eq + Hash,
876+
S: BuildHasher,
877877
{
878878
type Item = (K, V);
879879
type IntoIter = IntoIter<K, V, N>;
880880

881881
fn into_iter(self) -> Self::IntoIter {
882882
IntoIter {
883-
entries: self.core.entries
883+
entries: self.core.entries,
884884
}
885885
}
886886
}

0 commit comments

Comments
 (0)