[Python-checkins] Fix typo in docs (GH-5763)

Raymond Hettinger webhook-mailer at python.org
Mon Feb 19 18:39:29 EST 2018


https://github.com/python/cpython/commit/5dc275a2c00839cce4cd717f64fc9456e05d5af3
commit: 5dc275a2c00839cce4cd717f64fc9456e05d5af3
branch: 2.7
author: Raymond Hettinger <rhettinger at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-02-19T15:39:20-08:00
summary:

Fix typo in docs (GH-5763)

files:
M Doc/library/collections.rst

diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 679931e089f2..9610419f078e 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -300,7 +300,7 @@ counts, but the output will exclude results with counts of zero or less.
 
    .. method:: remove(value)
 
-      Removed the first occurrence of *value*.  If not found, raises a
+      Remove the first occurrence of *value*.  If not found, raises a
       :exc:`ValueError`.
 
       .. versionadded:: 2.5



More information about the Python-checkins mailing list