[Python-checkins] bpo-36189: Fixing typo in tutorial introduction (GH-13090)

Cheryl Sabella webhook-mailer at python.org
Sat May 4 17:55:33 EDT 2019


https://github.com/python/cpython/commit/98a1e06c47f655c7601b130cf8d549de9f08369e
commit: 98a1e06c47f655c7601b130cf8d549de9f08369e
branch: master
author: Jonatan <jonyucra at gmail.com>
committer: Cheryl Sabella <cheryl.sabella at gmail.com>
date: 2019-05-04T17:55:29-04:00
summary:

bpo-36189: Fixing typo in tutorial introduction (GH-13090)

files:
M Doc/tutorial/introduction.rst

diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
index 3e0c99558ed7..a4dbd6351b77 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -383,7 +383,7 @@ items of different types, but usually the items all have the same type. ::
    >>> squares
    [1, 4, 9, 16, 25]
 
-Like strings (and all other built-in :term:`sequence` type), lists can be
+Like strings (and all other built-in :term:`sequence` types), lists can be
 indexed and sliced::
 
    >>> squares[0]  # indexing returns the item



More information about the Python-checkins mailing list