diff options
| author | Jonas Schievink <jonasschievink@gmail.com> | 2020-09-13 20:21:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-13 20:21:11 +0200 |
| commit | 148b24f7963e4242563dfb91455047426e60f140 (patch) | |
| tree | 8eecf44a63ee9db9f5994acd54f018971fe94e4c | |
| parent | e5389a4a34e640359ef04ebc99962e196c5bfabe (diff) | |
| parent | b1e481d712fcf3d4b97ebf9e9a049c51701cf5e1 (diff) | |
| download | rust-148b24f7963e4242563dfb91455047426e60f140.tar.gz rust-148b24f7963e4242563dfb91455047426e60f140.zip | |
Rollup merge of #76629 - pickfire:patch-4, r=jonas-schievink
Simplify iter zip struct doc
| -rw-r--r-- | library/core/src/iter/adapters/zip.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/library/core/src/iter/adapters/zip.rs b/library/core/src/iter/adapters/zip.rs index e02de0ce45d..a854f70dcd0 100644 --- a/library/core/src/iter/adapters/zip.rs +++ b/library/core/src/iter/adapters/zip.rs @@ -8,11 +8,8 @@ use super::super::{ /// An iterator that iterates two other iterators simultaneously. /// -/// This `struct` is created by the [`zip`] method on [`Iterator`]. See its -/// documentation for more. -/// -/// [`zip`]: trait.Iterator.html#method.zip -/// [`Iterator`]: trait.Iterator.html +/// This `struct` is created by [`Iterator::zip`]. See its documentation +/// for more. #[derive(Clone)] #[must_use = "iterators are lazy and do nothing unless consumed"] #[stable(feature = "rust1", since = "1.0.0")] |
