From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 12 May 2021 10:25:54 +0000 (-0700) Subject: bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26057) X-Git-Tag: v3.10.0b2~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48cb11bf5b426bd3f1d010f987c03115661261b7;p=thirdparty%2FPython%2Fcpython.git 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 --- diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 0b09c18170dd..ee2c3e5b5853 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