Issue #23286: Fix typo in the tutorial.

Patch by Mayank Tripathi.
This commit is contained in:
Berker Peksag 2015-01-27 02:52:14 +02:00
parent 498b1f62db
commit b68c420d8a
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ means that the following slice returns a new (shallow) copy of the list::
>>> squares[:]
[1, 4, 9, 16, 25]
Lists also supports operations like concatenation::
Lists also support operations like concatenation::
>>> squares + [36, 49, 64, 81, 100]
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]