Rollup merge of #76663 - pickfire:patch-7, r=jonas-schievink

Simplify iter chain struct doc
This commit is contained in:
Jonas Schievink 2020-09-13 20:21:17 +02:00 committed by GitHub
commit 11a63bcdde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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")]