summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2019-09-12 14:56:28 (GMT)
committerGitHub <noreply@github.com>2019-09-12 14:56:28 (GMT)
commit4210ad5ebd5769f585035e022876e161cd0e9a3e (patch)
tree172b387b8f630ad47ba27b8bff8defe9bc62635d /Doc/glossary.rst
parentc6734ee7c55add5fdc2c821729ed5f67e237a096 (diff)
downloadcpython-4210ad5ebd5769f585035e022876e161cd0e9a3e.zip
cpython-4210ad5ebd5769f585035e022876e161cd0e9a3e.tar.gz
cpython-4210ad5ebd5769f585035e022876e161cd0e9a3e.tar.bz2
bpo-38096: Complete the "structseq" and "named tuple" cleanup (GH-16010)
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 84d0fca..e601e8b 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -757,7 +757,7 @@ Glossary
Some named tuples are built-in types (such as the above examples).
Alternatively, a named tuple can be created from a regular class
definition that inherits from :class:`tuple` and that defines named
- fields. Such as class can be written by hand or it can be created with
+ fields. Such a class can be written by hand or it can be created with
the factory function :func:`collections.namedtuple`. The latter
technique also adds some extra methods that may not be found in
hand-written or built-in named tuples.