]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
small grammatical change (GH-96138) (GH-96157)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 21 Aug 2022 20:55:00 +0000 (13:55 -0700)
committerGitHub <noreply@github.com>
Sun, 21 Aug 2022 20:55:00 +0000 (15:55 -0500)
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