]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26058)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 12 May 2021 10:28:10 +0000 (03:28 -0700)
committerGitHub <noreply@github.com>
Wed, 12 May 2021 10:28:10 +0000 (11:28 +0100)
Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com>
(cherry picked from commit 6574334a68aa324394a6fd1f855ecbad20432b1e)

Doc/tutorial/controlflow.rst

index 284b68c0010aacf0c6487c3f031de67aa3afa322..44417134a92ad90df7e4f474e667ad7c0b22df0d 100644 (file)
@@ -208,6 +208,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