diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-17 09:39:28 +0300 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-17 09:39:28 +0300 |
| commit | b6a9c9761ca988e1ab69defd45433fac0b2ff89c (patch) | |
| tree | 0071290253b0ef28f62f3f22d69be89db2abad50 /Doc/tutorial | |
| parent | 5562563dd4a745ecac8e6830b2a15042beb5dd47 (diff) | |
| parent | 6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d (diff) | |
| download | cpython-git-b6a9c9761ca988e1ab69defd45433fac0b2ff89c.tar.gz | |
Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error
messages.
Diffstat (limited to 'Doc/tutorial')
| -rw-r--r-- | Doc/tutorial/datastructures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 0d51480177..b39bdf4dfb 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst @@ -397,7 +397,7 @@ objects, such as lists. Though tuples may seem similar to lists, they are often used in different situations and for different purposes. -Tuples are :term:`immutable`, and usually contain an heterogeneous sequence of +Tuples are :term:`immutable`, and usually contain a heterogeneous sequence of elements that are accessed via unpacking (see later in this section) or indexing (or even by attribute in the case of :func:`namedtuples <collections.namedtuple>`). Lists are :term:`mutable`, and their elements are usually homogeneous and are |
