Skip to content

Commit f80883b

Browse files
docwilcophimuemue
authored andcommitted
Fix into_group_map_by documentation errors
This method returns a HashMap, not an Iterator. Bonus whitespace fix in example. See also the `into_group_map` documentation.
1 parent b793238 commit f80883b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3659,8 +3659,8 @@ pub trait Itertools: Iterator {
36593659
group_map::into_group_map(self)
36603660
}
36613661

3662-
/// Return an `Iterator` on a `HashMap`. Keys mapped to `Vec`s of values. The key is specified
3663-
/// in the closure.
3662+
/// Return a `HashMap` of keys mapped to `Vec`s of values. The key is specified
3663+
/// in the closure. The values are taken from the input iterator.
36643664
///
36653665
/// Essentially a shorthand for `.into_grouping_map_by(f).collect::<Vec<_>>()`.
36663666
///
@@ -3672,7 +3672,7 @@ pub trait Itertools: Iterator {
36723672
/// let lookup: HashMap<u32,Vec<(u32, u32)>> =
36733673
/// data.clone().into_iter().into_group_map_by(|a| a.0);
36743674
///
3675-
/// assert_eq!(lookup[&0], vec![(0,10),(0,20)]);
3675+
/// assert_eq!(lookup[&0], vec![(0,10), (0,20)]);
36763676
/// assert_eq!(lookup.get(&1), None);
36773677
/// assert_eq!(lookup[&2], vec![(2,12), (2,42)]);
36783678
/// assert_eq!(lookup[&3], vec![(3,13), (3,33)]);

0 commit comments

Comments
 (0)