From fa1e92dacdb9588bb075ec9089742753293aa220 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Mon, 9 May 2022 16:53:10 +0200 Subject: [PATCH] rustfmt --- src/indexmap.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/indexmap.rs b/src/indexmap.rs index d5380427..4e55d69e 100644 --- a/src/indexmap.rs +++ b/src/indexmap.rs @@ -871,16 +871,16 @@ impl Iterator for IntoIter { } impl IntoIterator for IndexMap - where - K: Eq + Hash, - S: BuildHasher, +where + K: Eq + Hash, + S: BuildHasher, { type Item = (K, V); type IntoIter = IntoIter; fn into_iter(self) -> Self::IntoIter { IntoIter { - entries: self.core.entries + entries: self.core.entries, } } }