summaryrefslogtreecommitdiffstats
path: root/Lib/collections
diff options
context:
space:
mode:
authorVarun Gole <59524264+varungole@users.noreply.github.com>2024-03-08 08:04:50 (GMT)
committerGitHub <noreply@github.com>2024-03-08 08:04:50 (GMT)
commit4d952737e62b833d6782e0180ee89088fe601317 (patch)
tree42f092eb49bdc430a36b7e2914813ef4651cc508 /Lib/collections
parentd864b0094f9875c5613cbb0b7f7f3ca8f1c6b606 (diff)
downloadcpython-4d952737e62b833d6782e0180ee89088fe601317.zip
cpython-4d952737e62b833d6782e0180ee89088fe601317.tar.gz
cpython-4d952737e62b833d6782e0180ee89088fe601317.tar.bz2
gh-116485: Fixed the typo (#116486)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Lib/collections')
-rw-r--r--Lib/collections/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index 2e527df..0aa0c3e 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