From: Varun Gole <59524264+varungole@users.noreply.github.com> Date: Fri, 8 Mar 2024 08:04:50 +0000 (-0500) Subject: gh-116485: Fixed the typo (#116486) X-Git-Tag: v3.13.0a5~56 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d952737e62b833d6782e0180ee89088fe601317;p=thirdparty%2FPython%2Fcpython.git gh-116485: Fixed the typo (#116486) Co-authored-by: Alex Waygood --- diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 2e527dfd810c..0aa0c3e15e95 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -680,7 +680,7 @@ class Counter(dict): ''' # The regular dict.update() operation makes no sense here because the - # replace behavior results in the some of original untouched counts + # replace behavior results in some of the original untouched counts # being mixed-in with all of the other counts for a mismash that # doesn't have a straight-forward interpretation in most counting # contexts. Instead, we implement straight-addition. Both the inputs