diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-12 10:25:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 10:25:54 (GMT) |
commit | 48cb11bf5b426bd3f1d010f987c03115661261b7 (patch) | |
tree | 37079f75038c41c276625bcab3b47567ce3f8597 | |
parent | 7e59ef10e8c7339fed61c53c663a962dea0f1ff1 (diff) | |
download | cpython-48cb11bf5b426bd3f1d010f987c03115661261b7.zip cpython-48cb11bf5b426bd3f1d010f987c03115661261b7.tar.gz cpython-48cb11bf5b426bd3f1d010f987c03115661261b7.tar.bz2 |
bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26057)
Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com>
(cherry picked from commit 6574334a68aa324394a6fd1f855ecbad20432b1e)
Co-authored-by: Irit Katriel <iritkatriel@yahoo.com>
-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 |