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

This commit is contained in:
Miss Islington (bot) 2022-08-21 13:55:00 -07:00 committed by GitHub
parent 27f390bc30
commit fedd25eb64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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