From 0cef72dcedf9e1de44b9ebb4b293ea604c087d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Koritar?= Date: Thu, 13 Apr 2023 17:30:12 -0300 Subject: [PATCH] Fix max_set_by_key documentation --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9f8b275c9..daf935f73 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3127,7 +3127,7 @@ pub trait Itertools : Iterator { ) } - /// Return all minimum elements of an iterator, as determined by + /// Return all maximum elements of an iterator, as determined by /// the specified function. /// /// # Examples