Skip to content

Commit 285af83

Browse files
committed
last formating
1 parent 22a876e commit 285af83

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/group_map.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ use std::iter::Iterator;
99
/// See [`.into_group_map()`](../trait.Itertools.html#method.into_group_map)
1010
/// for more information.
1111
pub fn into_group_map<I, K, V>(iter: I) -> HashMap<K, Vec<V>>
12-
where
13-
I: Iterator<Item=(K, V)>,
14-
K: Hash + Eq,
12+
where I: Iterator<Item=(K, V)>,
13+
K: Hash + Eq,
1514
{
1615
let mut lookup = HashMap::new();
1716

0 commit comments

Comments
 (0)