From 5d35c2520a82209157a6491388c880318897ef40 Mon Sep 17 00:00:00 2001 From: Joel Montes de Oca <6587811+JoelMon@users.noreply.github.com> Date: Thu, 25 Aug 2022 16:52:24 -0400 Subject: [PATCH] Resolved review --- src/free.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/free.rs b/src/free.rs index 259cbdcf9..4c657f25a 100644 --- a/src/free.rs +++ b/src/free.rs @@ -107,9 +107,6 @@ pub fn rev(iterable: I) -> iter::Rev /// Converts the arguments to iterators and zips them. /// -/// `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`]. /// /// ## Example