diff options
author | Steve Dower <steve.dower@python.org> | 2022-05-11 22:56:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-11 22:56:58 (GMT) |
commit | b3f99b69d03cf0ea72a567a81e8bc4bc074ab303 (patch) | |
tree | e1c9567334ab81761f6e0c37395d2760288c11b0 | |
parent | 27185f98fff07b1da84f390f84dc9cbc7c8f0ad5 (diff) | |
download | cpython-b3f99b69d03cf0ea72a567a81e8bc4bc074ab303.zip cpython-b3f99b69d03cf0ea72a567a81e8bc4bc074ab303.tar.gz cpython-b3f99b69d03cf0ea72a567a81e8bc4bc074ab303.tar.bz2 |
Fix minor documentation error in bisect docs (GH-92697)
-rw-r--r-- | Doc/library/bisect.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/bisect.rst b/Doc/library/bisect.rst index 901a41f..513675d 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:: |