]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
small grammatical change (GH-96138)
authorsand8089 <89005131+sand8089@users.noreply.github.com>
Sun, 21 Aug 2022 14:56:52 +0000 (07:56 -0700)
committerGitHub <noreply@github.com>
Sun, 21 Aug 2022 14:56:52 +0000 (09:56 -0500)
changed a to an under An example that uses most of the list methods

Doc/tutorial/datastructures.rst

index f5986fe292fb1b145052cc8bd5b0127aeded5cec..12b00be3793e14889d38fc9607d1ac9ac9a90386 100644 (file)
@@ -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