From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 8 Mar 2024 08:24:40 +0000 (+0100) Subject: [3.12] gh-116485: Fixed the typo (GH-116486) (#116489) X-Git-Tag: v3.12.3~132 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8a95135a204d6ad5de55b0972ad44bfe9ccf0b2;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-116485: Fixed the typo (GH-116486) (#116489) Co-authored-by: Varun Gole <59524264+varungole@users.noreply.github.com> Co-authored-by: Alex Waygood --- diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 8652dc8a4ec4..0e7971a872e3 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -679,7 +679,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