Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/map/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ impl<K, V> Slice<K, V> {
Values::new(&self.entries)
}

/// Return an iterator over mutable references to the the values of the map slice.
/// Return an iterator over mutable references to the values of the map slice.
pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> {
ValuesMut::new(&mut self.entries)
}
Expand Down
2 changes: 1 addition & 1 deletion src/rayon/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ where
K: Send,
V: Send,
{
/// Return a parallel iterator over mutable references to the the values of the map slice.
/// Return a parallel iterator over mutable references to the values of the map slice.
///
/// While parallel iterators can process items in any order, their relative order
/// in the slice is still preserved for operations like `reduce` and `collect`.
Expand Down
Loading