From: Eli Bendersky Date: Sat, 18 Aug 2012 06:50:09 +0000 (+0300) Subject: tutorial typo fix X-Git-Tag: v3.3.0rc1~83^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31a11902b3c2483998cee2573deb42ac9e0e24c0;p=thirdparty%2FPython%2Fcpython.git tutorial typo fix --- diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 3c0f88e90fbf..1564e96c3009 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -195,7 +195,7 @@ The :keyword:`continue` statement, also borrowed from C, continues with the next iteration of the loop:: >>> for num in range(2, 10): - ... if x % 2 == 0: + ... if num % 2 == 0: ... print("Found an even number", num) ... continue ... print("Found a number", num)