Skip to content

Commit 11a63bc

Browse files
Rollup merge of #76663 - pickfire:patch-7, r=jonas-schievink
Simplify iter chain struct doc
2 parents e460f85 + 20a2e09 commit 11a63bc

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

library/core/src/iter/adapters/chain.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,8 @@ use crate::usize;
44

55
/// An iterator that links two iterators together, in a chain.
66
///
7-
/// This `struct` is created by the [`chain`] method on [`Iterator`]. See its
8-
/// documentation for more.
9-
///
10-
/// [`chain`]: trait.Iterator.html#method.chain
11-
/// [`Iterator`]: trait.Iterator.html
7+
/// This `struct` is created by [`Iterator::chain`]. See its documentation
8+
/// for more.
129
#[derive(Clone, Debug)]
1310
#[must_use = "iterators are lazy and do nothing unless consumed"]
1411
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)