From: Greg Ward Date: Thu, 22 Aug 2002 19:15:35 +0000 (+0000) Subject: Fix peculiar (and ungrammatical) wording in an example program. X-Git-Tag: v2.3c1~4352 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=373198e7515906c7945f289c7b16fa5995bb30a5;p=thirdparty%2FPython%2Fcpython.git Fix peculiar (and ungrammatical) wording in an example program. --- diff --git a/Doc/ext/embedding.tex b/Doc/ext/embedding.tex index e971fe82774f..3510e18bc0f3 100644 --- a/Doc/ext/embedding.tex +++ b/Doc/ext/embedding.tex @@ -145,7 +145,7 @@ it to execute a Python script, such as: \begin{verbatim} def multiply(a,b): - print "Thy shall add", a, "times", b + print "Will compute", a, "times", b c = 0 for i in range(0, a): c = c + b @@ -156,7 +156,7 @@ then the result should be: \begin{verbatim} $ call multiply 3 2 -Thy shall add 3 times 2 +Will compute 3 times 2 Result of call: 6 \end{verbatim} % $