Skip to content

Commit b68c420

Browse files
committed
Issue python#23286: Fix typo in the tutorial.
Patch by Mayank Tripathi.
1 parent 498b1f6 commit b68c420

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/tutorial/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ means that the following slice returns a new (shallow) copy of the list::
391391
>>> squares[:]
392392
[1, 4, 9, 16, 25]
393393

394-
Lists also supports operations like concatenation::
394+
Lists also support operations like concatenation::
395395

396396
>>> squares + [36, 49, 64, 81, 100]
397397
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

0 commit comments

Comments
 (0)