summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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::