[Python-checkins] Fix minor documentation error in bisect docs (GH-92697)

zooba webhook-mailer at python.org
Wed May 11 18:57:03 EDT 2022


https://github.com/python/cpython/commit/b3f99b69d03cf0ea72a567a81e8bc4bc074ab303
commit: b3f99b69d03cf0ea72a567a81e8bc4bc074ab303
branch: main
author: Steve Dower <steve.dower at python.org>
committer: zooba <steve.dower at microsoft.com>
date: 2022-05-11T23:56:58+01:00
summary:

Fix minor documentation error in bisect docs (GH-92697)

files:
M Doc/library/bisect.rst

diff --git a/Doc/library/bisect.rst b/Doc/library/bisect.rst
index 901a41f549202..513675d3685a5 100644
--- a/Doc/library/bisect.rst
+++ b/Doc/library/bisect.rst
@@ -198,7 +198,7 @@ a 'B', and so on::
    >>> [grade(score) for score in [33, 99, 77, 70, 89, 90, 100]]
    ['F', 'A', 'C', 'C', 'B', 'A', 'A']
 
-The :func:`bisect`function and :func:`insort` functions also work with lists of
+The :func:`bisect` and :func:`insort` functions also work with lists of
 tuples.  The *key* argument can serve to extract the field used for ordering
 records in a table::
 



More information about the Python-checkins mailing list