diff options
author | sand8089 <89005131+sand8089@users.noreply.github.com> | 2022-08-21 14:56:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 14:56:52 (GMT) |
commit | d8c7a1174cc182668085b10aab4049f6a2794c2f (patch) | |
tree | 63f9efd54e52e484335fd2d9665d4269769fdb0c /Doc | |
parent | 511dea0a3ea9beb2fd72c7c689e2b1cb1636a6fa (diff) | |
download | cpython-d8c7a1174cc182668085b10aab4049f6a2794c2f.zip cpython-d8c7a1174cc182668085b10aab4049f6a2794c2f.tar.gz cpython-d8c7a1174cc182668085b10aab4049f6a2794c2f.tar.bz2 |
small grammatical change (GH-96138)
changed a to an under An example that uses most of the list methods
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tutorial/datastructures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index f5986fe..12b00be 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst @@ -106,7 +106,7 @@ An example that uses most of the list methods:: 0 >>> fruits.index('banana') 3 - >>> fruits.index('banana', 4) # Find next banana starting a position 4 + >>> fruits.index('banana', 4) # Find next banana starting at position 4 6 >>> fruits.reverse() >>> fruits |