[Python-checkins] cpython (merge 3.4 -> default): Issue #23286: Fix typo in the tutorial.

berker.peksag python-checkins at python.org
Tue Jan 27 01:52:30 CET 2015


https://hg.python.org/cpython/rev/8cb151ff1575
changeset:   94330:8cb151ff1575
parent:      94328:1e8937861ee3
parent:      94329:b3f0d7f50544
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Tue Jan 27 02:52:40 2015 +0200
summary:
  Issue #23286: Fix typo in the tutorial.

Patch by Mayank Tripathi.

files:
  Doc/tutorial/introduction.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -391,7 +391,7 @@
    >>> 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]

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list