PEP 572: Fix typo ("assing -> assign") (#715)

This commit is contained in:
Jonathan Goble 2018-07-09 22:32:24 -04:00 committed by Mariatta
parent 26e6f61fab
commit 6781796a53
1 changed files with 1 additions and 1 deletions

View File

@ -595,7 +595,7 @@ Broadly the same semantics as the current proposal, but spelled differently.
would create unnecessary confusion or require special-casing
(e.g. to forbid assignment within the headers of these statements).
(Note that ``with EXPR as VAR`` does *not* simply assing the value
(Note that ``with EXPR as VAR`` does *not* simply assign the value
of ``EXPR`` to ``VAR`` -- it calls ``EXPR.__enter__()`` and assigns
the result of *that* to ``VAR``.)