From f4213f554244519418e892f7a47a7397118037a0 Mon Sep 17 00:00:00 2001 From: Joel Montes de Oca <6587811+JoelMon@users.noreply.github.com> Date: Mon, 11 Jul 2022 16:47:23 -0400 Subject: [PATCH] Removed array language --- src/free.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/free.rs b/src/free.rs index 9b535d357..c68a1fc2c 100644 --- a/src/free.rs +++ b/src/free.rs @@ -105,11 +105,10 @@ pub fn rev(iterable: I) -> iter::Rev iterable.into_iter().rev() } -/// Returns an iterator pairing two arrays together in lock step. +/// Returns an iterator pairing two iterators together in lock step. /// -/// `zip()` returns an iterator where each element is a tuple consisting -/// of elements from the _first_ and _second_ array. The returned array has as many elements -/// as the shortest of the two arrays passed in. +/// `zip()` returns an iterator where each item consists of items from the _first_ and _second_ iterator. +/// The returned iterator has as many items as the shortest of the two iterators passed in. /// /// [`IntoIterator`] enabled version of [`Iterator::zip`]. ///