]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-116485: Fixed the typo (GH-116486) (#116490)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 8 Mar 2024 08:27:33 +0000 (09:27 +0100)
committerGitHub <noreply@github.com>
Fri, 8 Mar 2024 08:27:33 +0000 (08:27 +0000)
Co-authored-by: Varun Gole <59524264+varungole@users.noreply.github.com>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Lib/collections/__init__.py

index 69398ac1164685abf517c5b4ba9ca5f7fb3ba347..05a1a73cf4a41b46788de0bafe884cd8e8bf0364 100644 (file)
@@ -671,7 +671,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