Skip to content

Commit 0e212de

Browse files
authored
Merge pull request yasoob#168 from npenzin/patch-1
Update for_-_else.rst
2 parents f003b20 + dc6b3fb commit 0e212de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

for_-_else.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The common construct is to run a loop and search for an item. If the
3434
item is found, we break out of the loop using the ``break`` statement. There are two
3535
scenarios in which the loop may end. The first one is when the item is
3636
found and ``break`` is encountered. The second scenario is that the loop
37-
ends without encountering a ``break` statement. Now we may want to know which one of these is the reason for a
37+
ends without encountering a ``break`` statement. Now we may want to know which one of these is the reason for a
3838
loop's completion. One method is to set a flag and then check it once the
3939
loop ends. Another is to use the ``else`` clause.
4040

0 commit comments

Comments
 (0)