We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc881e8 + 1513424 commit 1fca19cCopy full SHA for 1fca19c
library/core/src/iter/mod.rs
@@ -243,13 +243,12 @@
243
//! ```
244
//!
245
//! While many collections offer `iter()`, not all offer `iter_mut()`. For
246
-//! example, mutating the keys of a [`HashSet<T>`] or [`HashMap<K, V>`] could
247
-//! put the collection into an inconsistent state if the key hashes change, so
248
-//! these collections only offer `iter()`.
+//! example, mutating the keys of a [`HashSet<T>`] could put the collection
+//! into an inconsistent state if the key hashes change, so this collection
+//! only offers `iter()`.
249
250
//! [`into_iter()`]: IntoIterator::into_iter
251
//! [`HashSet<T>`]: ../../std/collections/struct.HashSet.html
252
-//! [`HashMap<K, V>`]: ../../std/collections/struct.HashMap.html
253
254
//! # Adapters
255
0 commit comments