summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIrit Katriel <iritkatriel@yahoo.com>2021-05-12 11:23:03 +0100
committerGitHub <noreply@github.com>2021-05-12 11:23:03 +0100
commit6574334a68aa324394a6fd1f855ecbad20432b1e (patch)
tree1fe513f85e782e0ea814b960ef13a747aafca8b4
parentd597fdc5fd0e8aa73a783fea27287db669950c15 (diff)
downloadcpython-git-6574334a68aa324394a6fd1f855ecbad20432b1e.tar.gz
bpo-40640: doc -- add missing ... in example of Continue (#26055)
Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com>
-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 0b09c18170..ee2c3e5b58 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