diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-01-27 00:52:14 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-01-27 00:52:14 (GMT) |
commit | b68c420d8ad38f8e4f7625f388a6219ea61cd203 (patch) | |
tree | 106f08f718638d4cabbb0539eaead607deb6bfb6 /Doc/tutorial/introduction.rst | |
parent | 498b1f62dbdf55837d16fcaea9758af0cbebec0d (diff) | |
download | cpython-b68c420d8ad38f8e4f7625f388a6219ea61cd203.zip cpython-b68c420d8ad38f8e4f7625f388a6219ea61cd203.tar.gz cpython-b68c420d8ad38f8e4f7625f388a6219ea61cd203.tar.bz2 |
Issue #23286: Fix typo in the tutorial.
Patch by Mayank Tripathi.
Diffstat (limited to 'Doc/tutorial/introduction.rst')
-rw-r--r-- | Doc/tutorial/introduction.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 02f4c0a..c073816 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] |