diff options
author | Jonatan <jonyucra@gmail.com> | 2019-05-04 21:55:29 (GMT) |
---|---|---|
committer | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-05-04 21:55:29 (GMT) |
commit | 98a1e06c47f655c7601b130cf8d549de9f08369e (patch) | |
tree | 0e69d8a75d73b20fca5dc6168def416a4d482946 | |
parent | 5e98f05e55d13981c7c92fb14b9c013e4227c3c1 (diff) | |
download | cpython-98a1e06c47f655c7601b130cf8d549de9f08369e.zip cpython-98a1e06c47f655c7601b130cf8d549de9f08369e.tar.gz cpython-98a1e06c47f655c7601b130cf8d549de9f08369e.tar.bz2 |
bpo-36189: Fixing typo in tutorial introduction (GH-13090)
-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 3e0c995..a4dbd63 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 |