We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2467a41 commit 74b2587Copy full SHA for 74b2587
src/libcore/iter/traits.rs
@@ -261,7 +261,9 @@ impl<I: Iterator> IntoIterator for I {
261
/// Iterators produce a series of values, and collections can also be thought
262
/// of as a series of values. The `Extend` trait bridges this gap, allowing you
263
/// to extend a collection by including the contents of that iterator. When
264
-/// extending a collection with an already existing key, that entry is updated.
+/// extending a collection with an already existing key, that entry is updated
265
+/// or, in the case of collections that permit multiple entries with equal
266
+/// keys, that entry is inserted.
267
///
268
/// # Examples
269
0 commit comments