]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix whitespace.
authorGuido van Rossum <guido@python.org>
Fri, 29 Jul 2016 22:41:17 +0000 (15:41 -0700)
committerGuido van Rossum <guido@python.org>
Fri, 29 Jul 2016 22:41:17 +0000 (15:41 -0700)
Doc/library/typing.rst

index e11c0c23d7b7b58109ec5aa8ee9ed7f112b355a8..6993b316cf455a8c46872ac1036be6e347c0d0f6 100644 (file)
@@ -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::