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::