summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-11-12 04:59:44 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-11-12 04:59:44 (GMT)
commitc730931fa13234cd88267fd69a09da56ca089440 (patch)
tree8d195979eb2edb79f8ceffd8136d763315a19edc /Doc/library
parentccbc8dedecdff8fb3464063528f692831c7df29d (diff)
downloadcpython-c730931fa13234cd88267fd69a09da56ca089440.zip
cpython-c730931fa13234cd88267fd69a09da56ca089440.tar.gz
cpython-c730931fa13234cd88267fd69a09da56ca089440.tar.bz2
Issue #25603: Add missing parenthesis.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/typing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 668523b..0fe1167 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -478,7 +478,7 @@ The module defines the following classes, functions and decorators:
Usage::
- Employee = typing.NamedTuple('Employee', [('name', str), 'id', int)])
+ Employee = typing.NamedTuple('Employee', [('name', str), ('id', int)])
This is equivalent to::