diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 14:02:35 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 14:02:35 (GMT) |
commit | 1ce738e08f147beb724f22a9411724a955cd418d (patch) | |
tree | 9c2b84d7b81d1117159dd791094994d96094077e /Doc/reference | |
parent | cc22984d9e5e5357212db2eb1841f93e75fe75f5 (diff) | |
parent | 4c35964b764540988bfb342bffc7c4b1cb674031 (diff) | |
download | cpython-1ce738e08f147beb724f22a9411724a955cd418d.zip cpython-1ce738e08f147beb724f22a9411724a955cd418d.tar.gz cpython-1ce738e08f147beb724f22a9411724a955cd418d.tar.bz2 |
Merge typo fixes from 3.5
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/simple_stmts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 5f60540..79a46e2 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -237,7 +237,7 @@ Assignment of an object to a single target is recursively defined as follows. phase, causing less detailed error messages. Although the definition of assignment implies that overlaps between the -left-hand side and the right-hand side are 'simultanenous' (for example ``a, b = +left-hand side and the right-hand side are 'simultaneous' (for example ``a, b = b, a`` swaps two variables), overlaps *within* the collection of assigned-to variables occur left-to-right, sometimes resulting in confusion. For instance, the following program prints ``[0, 2]``:: |