summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/tut/tut.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex
index 2a084ff..00d0695 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'