about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2021-10-19 05:40:56 +0200
committerGitHub <noreply@github.com>2021-10-19 05:40:56 +0200
commit5bcaf04cbb7a3a6f11df3a4b9034e8d490e8c08c (patch)
tree5b37a148b35d0b41abaf1aac761402750374c450
parenta3a6b49734f85b439a201cd04230c94f5c0b35c0 (diff)
parent1519ca99d8020f4d2e4fb04a3eb425b97e457d18 (diff)
downloadrust-5bcaf04cbb7a3a6f11df3a4b9034e8d490e8c08c.tar.gz
rust-5bcaf04cbb7a3a6f11df3a4b9034e8d490e8c08c.zip
Rollup merge of #90034 - moxian:unzip-doc, r=cuviper
Tiny tweak to Iterator::unzip() doc comment example.

It's easier to figure out what it's doing and which output elements map to which input ones if the matrix we are dealing with is rectangular 2x3 rather than square 2x2.
-rw-r--r--library/core/src/iter/traits/iterator.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/core/src/iter/traits/iterator.rs b/library/core/src/iter/traits/iterator.rs
index f53d6cac7ed..d957a7527cf 100644
--- a/library/core/src/iter/traits/iterator.rs
+++ b/library/core/src/iter/traits/iterator.rs
@@ -2837,12 +2837,12 @@ pub trait Iterator {
     /// Basic usage:
     ///
     /// ```
-    /// let a = [(1, 2), (3, 4)];
+    /// let a = [(1, 2), (3, 4), (5, 6)];
     ///
     /// let (left, right): (Vec<_>, Vec<_>) = a.iter().cloned().unzip();
     ///
-    /// assert_eq!(left, [1, 3]);
-    /// assert_eq!(right, [2, 4]);
+    /// assert_eq!(left, [1, 3, 5]);
+    /// assert_eq!(right, [2, 4, 6]);
     ///
     /// // you can also unzip multiple nested tuples at once
     /// let a = [(1, (2, 3)), (4, (5, 6))];