summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-02-04 19:45:13 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-02-04 19:45:13 (GMT)
commitd04fa31f7357a4499c630985ebb65391ec6197bf (patch)
treeffdf40fa58e0a984904fe2f821f9d1a2d66b5714 /Doc/glossary.rst
parent1c62dc9d73ccb324ce7e15d321f4603894dcd4d3 (diff)
downloadcpython-d04fa31f7357a4499c630985ebb65391ec6197bf.zip
cpython-d04fa31f7357a4499c630985ebb65391ec6197bf.tar.gz
cpython-d04fa31f7357a4499c630985ebb65391ec6197bf.tar.bz2
Minor doc fixes.
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index f8d0e67..34e4858 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -393,7 +393,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``).