summaryrefslogtreecommitdiffstats
path: root/Doc/ext
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2002-08-22 19:15:35 (GMT)
committerGreg Ward <gward@python.net>2002-08-22 19:15:35 (GMT)
commit373198e7515906c7945f289c7b16fa5995bb30a5 (patch)
treef303f1739d638ef4aac223edffa0c9262b47c21b /Doc/ext
parentf69d3c9849dd8aaea11def67ba0f009dc8492d2f (diff)
downloadcpython-373198e7515906c7945f289c7b16fa5995bb30a5.zip
cpython-373198e7515906c7945f289c7b16fa5995bb30a5.tar.gz
cpython-373198e7515906c7945f289c7b16fa5995bb30a5.tar.bz2
Fix peculiar (and ungrammatical) wording in an example program.
Diffstat (limited to 'Doc/ext')
-rw-r--r--Doc/ext/embedding.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ext/embedding.tex b/Doc/ext/embedding.tex
index e971fe8..3510e18 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} % $