From 8a23d62f63cb17df01059b243e5c3ab4344a6a28 Mon Sep 17 00:00:00 2001 From: Bo Bayles Date: Mon, 24 Aug 2020 11:44:13 -0500 Subject: [PATCH] Update more.py --- more_itertools/more.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/more_itertools/more.py b/more_itertools/more.py index 1e1f6603..901df95f 100755 --- a/more_itertools/more.py +++ b/more_itertools/more.py @@ -1777,7 +1777,7 @@ def groupby_transform(iterable, keyfunc=None, valuefunc=None, reducefunc=None): * *keyfunc* is a function computing a key value for each item in *iterable* * *valuefunc* is a function that transforms the individual items from *iterable* after grouping - * *reducefunc* is a function that tranforms each group of items + * *reducefunc* is a function that transforms each group of items >>> iterable = 'aAAbBBcCC' >>> keyfunc = lambda k: k.upper()