From: Berker Peksag Date: Tue, 27 Jan 2015 00:52:14 +0000 (+0200) Subject: Issue #23286: Fix typo in the tutorial. X-Git-Tag: v3.4.3rc1~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b68c420d8ad38f8e4f7625f388a6219ea61cd203;p=python Issue #23286: Fix typo in the tutorial. Patch by Mayank Tripathi. --- diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 02f4c0a05b..c073816d66 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -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]