diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-06-03 14:32:40 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-06-03 14:32:40 (GMT) |
commit | 2f78b84c473787664940a97c49f4c64c20a03c48 (patch) | |
tree | 75b0db0d39abdc4a19854a10ead95b4c03b924be /Doc/reference/compound_stmts.rst | |
parent | 4ce118e99a21639ceed744ced7d35d8f0ec5f0c2 (diff) | |
download | cpython-2f78b84c473787664940a97c49f4c64c20a03c48.zip cpython-2f78b84c473787664940a97c49f4c64c20a03c48.tar.gz cpython-2f78b84c473787664940a97c49f4c64c20a03c48.tar.bz2 |
Issue #21439: Fix a couple of typos.
Diffstat (limited to 'Doc/reference/compound_stmts.rst')
-rw-r--r-- | Doc/reference/compound_stmts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index 52fc283..94b07f0 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -180,7 +180,7 @@ those made in the suite of the for-loop:: for i in range(10): print(i) i = 5 # this will not affect the for-loop - # be i will be overwritten with the next + # because i will be overwritten with the next # index in the range |