Fix whitespace.

This commit is contained in:
Guido van Rossum 2016-07-29 15:41:35 -07:00
commit a9333b1207

View file

@ -68,7 +68,7 @@ Use the ``NewType`` helper function to create distinct types::
UserId = NewType('UserId', int) UserId = NewType('UserId', int)
some_id = UserId(524313) some_id = UserId(524313)
The static type checker will treat the new type as if it were a subclass 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:: of the original type. This is useful in helping catch logical errors::