From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 21 Aug 2022 20:55:00 +0000 (-0700) Subject: small grammatical change (GH-96138) (GH-96157) X-Git-Tag: v3.11.0rc2~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fedd25eb645d1371a5f8e28e4574c4aa0d0193e7;p=thirdparty%2FPython%2Fcpython.git small grammatical change (GH-96138) (GH-96157) --- diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index f5986fe292fb..12b00be3793e 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