We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f9e7fc + 5112f87 commit 9524fffCopy full SHA for 9524fff
library/core/src/iter/adapters/flatten.rs
@@ -7,11 +7,8 @@ use super::Map;
7
/// An iterator that maps each element to an iterator, and yields the elements
8
/// of the produced iterators.
9
///
10
-/// This `struct` is created by the [`flat_map`] method on [`Iterator`]. See its
11
-/// documentation for more.
12
-///
13
-/// [`flat_map`]: trait.Iterator.html#method.flat_map
14
-/// [`Iterator`]: trait.Iterator.html
+/// This `struct` is created by [`Iterator::flat_map`]. See its documentation
+/// for more.
15
#[must_use = "iterators are lazy and do nothing unless consumed"]
16
#[stable(feature = "rust1", since = "1.0.0")]
17
pub struct FlatMap<I, U: IntoIterator, F> {
0 commit comments