From 9895123b23adfe5a3a9566b653707402afb0316d Mon Sep 17 00:00:00 2001 From: Varun Gole <59524264+varungole@users.noreply.github.com> Date: Fri, 8 Mar 2024 03:04:50 -0500 Subject: [PATCH] gh-116485: Fixed the typo (GH-116486) (cherry picked from commit 4d952737e62b833d6782e0180ee89088fe601317) Co-authored-by: Varun Gole <59524264+varungole@users.noreply.github.com> Co-authored-by: Alex Waygood --- Lib/collections/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 69398ac1164685..05a1a73cf4a41b 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -671,7 +671,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