File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 243
243
//! ```
244
244
//!
245
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 put
247
- //! the collection into an inconsistent state if the key hashes change, so these
248
- //! collections only offer `iter()`.
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()`.
249
249
//!
250
250
//! [`into_iter()`]: IntoIterator::into_iter
251
+ //! [`HashSet<T>`]: ../../std/collections/struct.HashSet.html
252
+ //! [`HashMap<K, V>`]: ../../std/collections/struct.HashMap.html
251
253
//!
252
254
//! # Adapters
253
255
//!
You can’t perform that action at this time.
0 commit comments