1
Fork 0

iterate over a maps values directly. (clippy::for_kv_map)

This commit is contained in:
Matthias Krüger 2020-03-06 23:50:23 +01:00
parent 45108b195f
commit 1351db31fb

View file

@ -1542,7 +1542,7 @@ impl Context {
}
if self.shared.sort_modules_alphabetically {
for (_, items) in &mut map {
for items in map.values_mut() {
items.sort();
}
}