diff options
author | Guido van Rossum <guido@dropbox.com> | 2016-07-29 22:41:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2016-07-29 22:41:35 (GMT) |
commit | a9333b12077a6eb1d7136a7b9e08ec8b27ac3019 (patch) | |
tree | cb27fe22550faa7d2e07f698e22aabe15724a6db /Doc/library | |
parent | e608709675f1649b6573e18d41c13dd53d28f64b (diff) | |
parent | c301cbf445a890c66eec0ef0d53aad9b7d690ad5 (diff) | |
download | cpython-a9333b12077a6eb1d7136a7b9e08ec8b27ac3019.zip cpython-a9333b12077a6eb1d7136a7b9e08ec8b27ac3019.tar.gz cpython-a9333b12077a6eb1d7136a7b9e08ec8b27ac3019.tar.bz2 |
Fix whitespace.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/typing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index d8122fd..9720383 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -68,7 +68,7 @@ Use the ``NewType`` helper function to create distinct types:: UserId = NewType('UserId', int) some_id = UserId(524313) - + The static type checker will treat the new type as if it were a subclass of the original type. This is useful in helping catch logical errors:: |