summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/tutorial/controlflow.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 0b09c18..ee2c3e5 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -214,6 +214,7 @@ iteration of the loop::
... print("Found an even number", num)
... continue
... print("Found an odd number", num)
+ ...
Found an even number 2
Found an odd number 3
Found an even number 4