From 7287e5798352a84f6a05e5a5668e1de632ab8dd4 Mon Sep 17 00:00:00 2001 From: wandalen Date: Mon, 13 Jun 2022 17:53:47 +0300 Subject: [PATCH] better description of function tee to avoid misunderstandings --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 4b9d73e6f..ba4efaa28 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -780,7 +780,7 @@ pub trait Itertools : Iterator { /// the original iterator. /// /// **Note:** If the iterator is clonable, prefer using that instead - /// of using this method. It is likely to be more efficient. + /// of using this method. Cloning is likely to be more efficient. /// /// Iterator element type is `Self::Item`. ///