From 6574334a68aa324394a6fd1f855ecbad20432b1e Mon Sep 17 00:00:00 2001 From: Irit Katriel Date: Wed, 12 May 2021 11:23:03 +0100 Subject: bpo-40640: doc -- add missing ... in example of Continue (#26055) Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com> --- Doc/tutorial/controlflow.rst | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v0.12