diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 2a084ffa9b2..00d06958e7f 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -1042,7 +1042,7 @@ Perhaps the most well-known statement type is the \keyword{if} statement. For example: \begin{verbatim} ->>> x = int(raw_input("Please enter a number: ")) +>>> x = int(raw_input("Please enter an integer: ")) >>> if x < 0: ... x = 0 ... print 'Negative changed to zero'