]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-116485: Fixed the typo (#116486)
authorVarun Gole <59524264+varungole@users.noreply.github.com>
Fri, 8 Mar 2024 08:04:50 +0000 (03:04 -0500)
committerGitHub <noreply@github.com>
Fri, 8 Mar 2024 08:04:50 +0000 (08:04 +0000)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Lib/collections/__init__.py

index 2e527dfd810c43ba5a7f361747e26c70084e9c4b..0aa0c3e15e951988ef6587b1bc60ceeb6dd7faea 100644 (file)
@@ -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