From d3ba10f4b5000d42e84def72306afb633651f4e0 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 14 Aug 2001 19:55:42 +0000 Subject: [PATCH] Clarify the prompt in an example. This closes SF bug #450633. --- Doc/tut/tut.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'