From 660bb77abb94abe5e41e3e18c5755a0c6caa149d Mon Sep 17 00:00:00 2001 From: sand8089 <89005131+sand8089@users.noreply.github.com> Date: Sun, 21 Aug 2022 07:56:52 -0700 Subject: [PATCH] small grammatical change (GH-96138) changed a to an under An example that uses most of the list methods (cherry picked from commit d8c7a1174cc182668085b10aab4049f6a2794c2f) Co-authored-by: sand8089 <89005131+sand8089@users.noreply.github.com> --- Doc/tutorial/datastructures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index f5986fe292fb1b..12b00be3793e14 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