We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f003b20 + dc6b3fb commit 0e212deCopy full SHA for 0e212de
1 file changed
for_-_else.rst
@@ -34,7 +34,7 @@ The common construct is to run a loop and search for an item. If the
34
item is found, we break out of the loop using the ``break`` statement. There are two
35
scenarios in which the loop may end. The first one is when the item is
36
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
+ends without encountering a ``break`` statement. Now we may want to know which one of these is the reason for a
38
loop's completion. One method is to set a flag and then check it once the
39
loop ends. Another is to use the ``else`` clause.
40
0 commit comments