diff options
author | Raymond Hettinger <python@rcn.com> | 2009-02-04 19:34:31 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-02-04 19:34:31 +0000 |
commit | cd72c4f593a5b4605fe1980859e1490ac3dde4ba (patch) | |
tree | ea74ce4589d322c76a5a12ff28e17571e3a58838 /Doc/glossary.rst | |
parent | 5055553497bba6bb65453140c52170102133e04e (diff) | |
download | cpython-cd72c4f593a5b4605fe1980859e1490ac3dde4ba.tar.gz |
Minor doc fixes.
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 0eb3111750..808993e18e 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -396,7 +396,7 @@ Glossary also :term:`immutable`. named tuple - Any tuple subclass whose indexable elements are also accessible using + Any tuple-like class whose indexable elements are also accessible using named attributes (for example, :func:`time.localtime` returns a tuple-like object where the *year* is accessible either with an index such as ``t[0]`` or with a named attribute like ``t.tm_year``). |