From 0b90e33feb741c23d006dc51dc6037fa0a3c36a4 Mon Sep 17 00:00:00 2001 From: Justinas Petuchovas Date: Tue, 26 Oct 2021 07:47:46 +0300 Subject: [PATCH 1/2] Fix typo in Counter documentation --- Doc/library/collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 4ba197e11e97bd..041c218ce19890 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -343,7 +343,7 @@ All of those tests treat missing elements as having zero counts so that ``Counter(a=1) == Counter(a=1, b=0)`` returns true. .. versionadded:: 3.10 - Rich comparison operations we were added + Rich comparison operations were added .. versionchanged:: 3.10 In equality tests, missing elements are treated as having zero counts. From 80a7f25127885c989551fb021d5a5732a8020e06 Mon Sep 17 00:00:00 2001 From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Thu, 28 Oct 2021 07:38:31 +0800 Subject: [PATCH 2/2] Update Doc/library/collections.rst --- Doc/library/collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 041c218ce19890..8bf3cb6cb12da1 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -343,7 +343,7 @@ All of those tests treat missing elements as having zero counts so that ``Counter(a=1) == Counter(a=1, b=0)`` returns true. .. versionadded:: 3.10 - Rich comparison operations were added + Rich comparison operations were added. .. versionchanged:: 3.10 In equality tests, missing elements are treated as having zero counts.