Normalize examples.

This commit is contained in:
Eric V. Smith 2015-08-08 02:48:16 -04:00
parent fe83f468f6
commit a6b8d8c537
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ work sometimes and raise an error at other times::
or:: or::
>>> for x in (32, 100, 'fifty'): >>> for x in (32, 100, 'fifty'):
... f'x = {x:+3}' ... print(f'x = {x:+3}')
... ...
'x = +32' 'x = +32'
'x = +100' 'x = +100'