From: Zachary Ware Date: Thu, 12 Nov 2015 04:59:44 +0000 (-0600) Subject: Issue #25603: Add missing parenthesis. X-Git-Tag: v3.5.1rc1~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c730931fa13234cd88267fd69a09da56ca089440;p=python Issue #25603: Add missing parenthesis. --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 668523b52d..0fe1167137 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::