diff options
author | Varun Gole <59524264+varungole@users.noreply.github.com> | 2024-03-08 08:04:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-08 08:04:50 (GMT) |
commit | 4d952737e62b833d6782e0180ee89088fe601317 (patch) | |
tree | 42f092eb49bdc430a36b7e2914813ef4651cc508 /Lib/collections | |
parent | d864b0094f9875c5613cbb0b7f7f3ca8f1c6b606 (diff) | |
download | cpython-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__.py | 2 |
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 |