Skip to content

Commit 20a2e09

Browse files
authored
Simplify iter chain struct doc
1 parent b6c8455 commit 20a2e09

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)