summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-01-27 00:52:40 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-01-27 00:52:40 (GMT)
commitb820d0defc620513a13ce4074cf56c2886004d8c (patch)
treecffcbb145ea3b9d0f1aad0832ba0f8fce07f7ea4 /Doc
parentf2be23d329ceb5df1217e50dae1828a5acbf5ccb (diff)
parentb68c420d8ad38f8e4f7625f388a6219ea61cd203 (diff)
downloadcpython-b820d0defc620513a13ce4074cf56c2886004d8c.zip
cpython-b820d0defc620513a13ce4074cf56c2886004d8c.tar.gz
cpython-b820d0defc620513a13ce4074cf56c2886004d8c.tar.bz2
Issue #23286: Fix typo in the tutorial.
Patch by Mayank Tripathi.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tutorial/introduction.rst2
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]