From: Justinas Petuchovas Date: Thu, 28 Oct 2021 10:43:09 +0000 (+0300) Subject: Fix typo in Counter documentation (GH-29223) X-Git-Tag: v3.11.0a2~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a68b3603fbc0aaf9eeb8ce8b42b78d6fa7cfa78;p=thirdparty%2FPython%2Fcpython.git Fix typo in Counter documentation (GH-29223) Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 4ba197e11e97..8bf3cb6cb12d 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.