[Python-checkins] Add a missing space after a period in 'typing.TypedDict' documentation (GH-18784)

Miss Islington (bot) webhook-mailer at python.org
Wed Mar 4 19:12:32 EST 2020


https://github.com/python/cpython/commit/d4a09c13ddd91a9bc1b4ba76ff4e8a153334a1e2
commit: d4a09c13ddd91a9bc1b4ba76ff4e8a153334a1e2
branch: master
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-03-04T16:12:28-08:00
summary:

Add a missing space after a period in 'typing.TypedDict' documentation (GH-18784)

files:
M Doc/library/typing.rst

diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index eac75ee8654f5..58ae184578616 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.



More information about the Python-checkins mailing list