]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add a missing space after a period in 'typing.TypedDict' documentation (GH-18784)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 5 Mar 2020 00:12:28 +0000 (16:12 -0800)
committerGitHub <noreply@github.com>
Thu, 5 Mar 2020 00:12:28 +0000 (16:12 -0800)
Doc/library/typing.rst

index eac75ee8654f53d721c94bc00e2b9a9d7341402f..58ae184578616839b595ff3d4e2cb09c11786319 100644 (file)
@@ -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.