Skip to content

Commit

Permalink
Rollup merge of #76663 - pickfire:patch-7, r=jonas-schievink
Browse files Browse the repository at this point in the history
Simplify iter chain struct doc
  • Loading branch information
jonas-schievink committed Sep 13, 2020
2 parents e460f85 + 20a2e09 commit 11a63bc
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions library/core/src/iter/adapters/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,8 @@ use crate::usize;

/// An iterator that links two iterators together, in a chain.
///
/// This `struct` is created by the [`chain`] method on [`Iterator`]. See its
/// documentation for more.
///
/// [`chain`]: trait.Iterator.html#method.chain
/// [`Iterator`]: trait.Iterator.html
/// This `struct` is created by [`Iterator::chain`]. See its documentation
/// for more.
#[derive(Clone, Debug)]
#[must_use = "iterators are lazy and do nothing unless consumed"]
#[stable(feature = "rust1", since = "1.0.0")]
Expand Down

0 comments on commit 11a63bc

Please sign in to comment.