diff options
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 52fc2830a35..94b07f0be95 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 |