https://github.com/python/cpython/commit/a8a95135a204d6ad5de55b0972ad44bfe9ccf0b2 commit: a8a95135a204d6ad5de55b0972ad44bfe9ccf0b2 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: AlexWaygood <[email protected]> date: 2024-03-08T08:24:40Z summary:
[3.12] gh-116485: Fixed the typo (GH-116486) (#116489) Co-authored-by: Varun Gole <[email protected]> Co-authored-by: Alex Waygood <[email protected]> files: M Lib/collections/__init__.py diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 8652dc8a4ec450..0e7971a872e3a2 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -679,7 +679,7 @@ def update(self, iterable=None, /, **kwds): ''' # 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 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
