summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorJustinas Petuchovas <justinas.petuchovas@gmail.com>2021-10-28 10:43:09 (GMT)
committerGitHub <noreply@github.com>2021-10-28 10:43:09 (GMT)
commit0a68b3603fbc0aaf9eeb8ce8b42b78d6fa7cfa78 (patch)
tree1b544803dc68d140a83fdff24fbb0061be9e4a4b /Doc/library
parentd56375a0dd4cee162081b173310298a3d32af293 (diff)
downloadcpython-0a68b3603fbc0aaf9eeb8ce8b42b78d6fa7cfa78.zip
cpython-0a68b3603fbc0aaf9eeb8ce8b42b78d6fa7cfa78.tar.gz
cpython-0a68b3603fbc0aaf9eeb8ce8b42b78d6fa7cfa78.tar.bz2
Fix typo in Counter documentation (GH-29223)
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Diffstat (limited to 'Doc/library')
-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.