From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 5 Mar 2020 00:18:22 +0000 (-0800) Subject: Add a missing space after a period in 'typing.TypedDict' documentation (GH-18784) X-Git-Tag: v3.8.3rc1~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5a3926d55922bf62faaeab664844dd69df04ab42;p=thirdparty%2FPython%2Fcpython.git Add a missing space after a period in 'typing.TypedDict' documentation (GH-18784) (cherry picked from commit d4a09c13ddd91a9bc1b4ba76ff4e8a153334a1e2) Co-authored-by: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index a9c7c4756dd0..beb00fc8b61c 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -1004,7 +1004,7 @@ The module defines the following classes, functions and decorators: x: int y: int - This means that a point2D TypedDict can have any of the keys omitted.A type + This means that a point2D TypedDict can have any of the keys omitted. A type checker is only expected to support a literal False or True as the value of the total argument. True is the default, and makes all items defined in the class body be required.