From c730931fa13234cd88267fd69a09da56ca089440 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Wed, 11 Nov 2015 22:59:44 -0600 Subject: [PATCH] Issue #25603: Add missing parenthesis. --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 668523b52d9..0fe11671373 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::