summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-10-28 11:06:04 (GMT)
committerGitHub <noreply@github.com>2021-10-28 11:06:04 (GMT)
commit99495b8afffdc62145598516dbdf99e64b6249bd (patch)
treeca0adbadcbfb1aed01cbc3589a146875abb452b3
parent1f45cc0dfa9a8febfc256411c803b4536719db97 (diff)
downloadcpython-99495b8afffdc62145598516dbdf99e64b6249bd.zip
cpython-99495b8afffdc62145598516dbdf99e64b6249bd.tar.gz
cpython-99495b8afffdc62145598516dbdf99e64b6249bd.tar.bz2
Fix typo in Counter documentation (GH-29223)
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> (cherry picked from commit 0a68b3603fbc0aaf9eeb8ce8b42b78d6fa7cfa78) Co-authored-by: Justinas Petuchovas <justinas.petuchovas@gmail.com>
-rw-r--r--Doc/library/collections.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 4ba197e..8bf3cb6 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.