diff options
author | Irit Katriel <iritkatriel@yahoo.com> | 2021-05-12 10:23:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 10:23:03 (GMT) |
commit | 6574334a68aa324394a6fd1f855ecbad20432b1e (patch) | |
tree | 1fe513f85e782e0ea814b960ef13a747aafca8b4 /Doc/tutorial | |
parent | d597fdc5fd0e8aa73a783fea27287db669950c15 (diff) | |
download | cpython-6574334a68aa324394a6fd1f855ecbad20432b1e.zip cpython-6574334a68aa324394a6fd1f855ecbad20432b1e.tar.gz cpython-6574334a68aa324394a6fd1f855ecbad20432b1e.tar.bz2 |
bpo-40640: doc -- add missing ... in example of Continue (#26055)
Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com>
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/controlflow.rst | 1 |
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 |