summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-07-29 22:41:17 (GMT)
committerGuido van Rossum <guido@python.org>2016-07-29 22:41:17 (GMT)
commitc301cbf445a890c66eec0ef0d53aad9b7d690ad5 (patch)
tree34f520d3a29ac5888c9faee0f2b715598621c882 /Doc/library
parent342e800e974475cc302c46ed6d9f75276035278f (diff)
downloadcpython-c301cbf445a890c66eec0ef0d53aad9b7d690ad5.zip
cpython-c301cbf445a890c66eec0ef0d53aad9b7d690ad5.tar.gz
cpython-c301cbf445a890c66eec0ef0d53aad9b7d690ad5.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 e11c0c2..6993b31 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::