]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix minor documentation error in bisect docs (GH-92697)
authorSteve Dower <steve.dower@python.org>
Wed, 11 May 2022 22:56:58 +0000 (23:56 +0100)
committerGitHub <noreply@github.com>
Wed, 11 May 2022 22:56:58 +0000 (23:56 +0100)
Doc/library/bisect.rst

index 901a41f549202ca3f7e962254da45acac48b414a..513675d3685a52001c7691abc8b85180e63c95ab 100644 (file)
@@ -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::