Simplify iter zip struct doc

This commit is contained in:
Ivan Tham 2020-09-12 13:35:03 +08:00 committed by GitHub
parent 94a7ea271f
commit b1e481d712
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,11 +8,8 @@ use super::super::{
/// An iterator that iterates two other iterators simultaneously. /// An iterator that iterates two other iterators simultaneously.
/// ///
/// This `struct` is created by the [`zip`] method on [`Iterator`]. See its /// This `struct` is created by [`Iterator::zip`]. See its documentation
/// documentation for more. /// for more.
///
/// [`zip`]: trait.Iterator.html#method.zip
/// [`Iterator`]: trait.Iterator.html
#[derive(Clone)] #[derive(Clone)]
#[must_use = "iterators are lazy and do nothing unless consumed"] #[must_use = "iterators are lazy and do nothing unless consumed"]
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]