From 5a5731c03990449ff212b69a91e310e93500ebe3 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 28 Dec 2023 13:52:35 +0000 Subject: [PATCH] Fix spelling error in documentation. The primary trait in this crate is called Itertools, not IterTools. Signed-off-by: Simon Tatham --- src/exactly_one_err.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exactly_one_err.rs b/src/exactly_one_err.rs index 47c734c1a..90d898778 100644 --- a/src/exactly_one_err.rs +++ b/src/exactly_one_err.rs @@ -8,7 +8,7 @@ use either::Either; use crate::size_hint; -/// Iterator returned for the error case of `IterTools::exactly_one()` +/// Iterator returned for the error case of `Itertools::exactly_one()` /// This iterator yields exactly the same elements as the input iterator. /// /// During the execution of `exactly_one` the iterator must be mutated. This wrapper