]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix peculiar (and ungrammatical) wording in an example program.
authorGreg Ward <gward@python.net>
Thu, 22 Aug 2002 19:15:35 +0000 (19:15 +0000)
committerGreg Ward <gward@python.net>
Thu, 22 Aug 2002 19:15:35 +0000 (19:15 +0000)
Doc/ext/embedding.tex

index e971fe82774f1f3b36849e5011c02e7f13b90196..3510e18bc0f3c11b268977f9c6db0afe698ea02e 100644 (file)
@@ -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} % $