Skip to content

Commit 60c7de7

Browse files
1 parent 916acd5 commit 60c7de7

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

Source/Fn/Summary/Group.rs

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,14 @@ where
6666
}
6767
}
6868

69-
Output.into_iter().sorted_by(|(A, _), (B, _)| A.cmp(B)).for_each(
70-
|(Message, Difference)| {
71-
println!("{}", Message);
69+
Output.into_iter().sorted_by(|(A, _), (B, _)| A.cmp(B)).for_each(|(Message, Difference)| {
70+
println!("{}", Message);
7271

73-
Difference
74-
.into_iter()
75-
.sorted_by_key(|Difference| Reverse(Difference.len()))
76-
.for_each(|Difference| println!("{}", Difference));
77-
},
78-
);
72+
Difference
73+
.into_iter()
74+
.sorted_by_key(|Difference| Reverse(Difference.len()))
75+
.for_each(|Difference| println!("{}", Difference));
76+
});
7977
}
8078

8179
use dashmap::DashMap;

0 commit comments

Comments
 (0)