Issue #25603: Add missing parenthesis.
authorZachary Ware <zachary.ware@gmail.com>
Thu, 12 Nov 2015 04:59:44 +0000 (22:59 -0600)
committerZachary Ware <zachary.ware@gmail.com>
Thu, 12 Nov 2015 04:59:44 +0000 (22:59 -0600)
Doc/library/typing.rst

index 668523b52d9bacb85354a8973f1d99857c5426c3..0fe11671373f3360d43698985f684613b6e40f7c 100644 (file)
@@ -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::