]> granicus.if.org Git - python/commitdiff
Issue #23286: Fix typo in the tutorial.
authorBerker Peksag <berker.peksag@gmail.com>
Tue, 27 Jan 2015 00:52:14 +0000 (02:52 +0200)
committerBerker Peksag <berker.peksag@gmail.com>
Tue, 27 Jan 2015 00:52:14 +0000 (02:52 +0200)
Patch by Mayank Tripathi.

Doc/tutorial/introduction.rst

index 02f4c0a05b42d1ed62fbe0b16484f2f408f3622b..c073816d663ef0d77558d93e80f6b4038616369b 100644 (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]