[Python-checkins] small grammatical change (GH-96138) (GH-96157)

rhettinger webhook-mailer at python.org
Sun Aug 21 16:55:05 EDT 2022


https://github.com/python/cpython/commit/fedd25eb645d1371a5f8e28e4574c4aa0d0193e7
commit: fedd25eb645d1371a5f8e28e4574c4aa0d0193e7
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: rhettinger <rhettinger at users.noreply.github.com>
date: 2022-08-21T15:55:00-05:00
summary:

small grammatical change (GH-96138) (GH-96157)

files:
M Doc/tutorial/datastructures.rst

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



More information about the Python-checkins mailing list