summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-11-12 05:00:01 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-11-12 05:00:01 (GMT)
commit6e6ee30aad72425dd5a13c7a507f515318b1309e (patch)
tree9f57888422c2d7a0ff7b33ec24a063cb3eeaf501
parentd545f7f4cb5a2104ee09b333e14206add515bf02 (diff)
parentc730931fa13234cd88267fd69a09da56ca089440 (diff)
downloadcpython-6e6ee30aad72425dd5a13c7a507f515318b1309e.zip
cpython-6e6ee30aad72425dd5a13c7a507f515318b1309e.tar.gz
cpython-6e6ee30aad72425dd5a13c7a507f515318b1309e.tar.bz2
Closes #25603: Merge with 3.5
-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::