summaryrefslogtreecommitdiff
path: root/Doc/tutorial/introduction.rst
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-01-27 02:52:14 +0200
committerBerker Peksag <berker.peksag@gmail.com>2015-01-27 02:52:14 +0200
commit88ec062b9e8e0b21b8838f8ad0188a4ff17691b9 (patch)
treeb6872f9694202f26e4ce551633909dc53ea815b1 /Doc/tutorial/introduction.rst
parent18cc1963cbf99eeb75e5beafa6a0d43baa2204e7 (diff)
downloadcpython-88ec062b9e8e0b21b8838f8ad0188a4ff17691b9.tar.gz
Issue #23286: Fix typo in the tutorial.
Patch by Mayank Tripathi.
Diffstat (limited to 'Doc/tutorial/introduction.rst')
-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 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]