PEP 572: Fix markup

This commit is contained in:
Chris Angelico 2018-04-11 13:47:25 +10:00
parent 71fea57f19
commit 423b65b131
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ Python 3.7 semantics::
return result
numbers = <listcomp>(iter(range(3)))
Under the new semantics, this would instead be equivalent to:
Under the new semantics, this would instead be equivalent to::
def <listcomp>():
result = []