summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGuido van Rossum <guido@dropbox.com>2016-07-29 22:41:35 (GMT)
committerGuido van Rossum <guido@dropbox.com>2016-07-29 22:41:35 (GMT)
commita9333b12077a6eb1d7136a7b9e08ec8b27ac3019 (patch)
treecb27fe22550faa7d2e07f698e22aabe15724a6db /Doc/library
parente608709675f1649b6573e18d41c13dd53d28f64b (diff)
parentc301cbf445a890c66eec0ef0d53aad9b7d690ad5 (diff)
downloadcpython-a9333b12077a6eb1d7136a7b9e08ec8b27ac3019.zip
cpython-a9333b12077a6eb1d7136a7b9e08ec8b27ac3019.tar.gz
cpython-a9333b12077a6eb1d7136a7b9e08ec8b27ac3019.tar.bz2
Fix whitespace.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/typing.rst2
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::