Skip to content

Commit 73442d6

Browse files
authored
Merge pull request #185 from taiki-e/typo
Fix typo in map.rs
2 parents 11e57ac + 9923b34 commit 73442d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ impl<K, V, S> IndexMap<K, V, S> {
237237
}
238238
}
239239

240-
/// Return an iterator over mutable references to the the values of the map,
240+
/// Return an iterator over mutable references to the values of the map,
241241
/// in their order
242242
pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> {
243243
ValuesMut {

src/rayon/map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ where
275275
K: Send,
276276
V: Send,
277277
{
278-
/// Return a parallel iterator over mutable references to the the values of the map
278+
/// Return a parallel iterator over mutable references to the values of the map
279279
///
280280
/// While parallel iterators can process items in any order, their relative order
281281
/// in the map is still preserved for operations like `reduce` and `collect`.

0 commit comments

Comments
 (0)