summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-06-30 04:27:31 +0000
committerRaymond Hettinger <python@rcn.com>2003-06-30 04:27:31 +0000
commitccd615c1a7b9545c4e3a8ab7451633ae909aeb50 (patch)
treeec100469beeea712f9a01891efd5a78b87361e29
parentd693a81595ae3c617f5dd20f9a8bf8b7f130683b (diff)
downloadcpython-git-ccd615c1a7b9545c4e3a8ab7451633ae909aeb50.tar.gz
SF bug #762990: Awful Grammar in Python Tutorial
Fixed a nit.
-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 9386774ac5..76663a7458 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -3538,7 +3538,7 @@ used to the benefit of the program, since aliases behave like pointers
in some respects. For example, passing an object is cheap since only
a pointer is passed by the implementation; and if a function modifies
an object passed as an argument, the caller will see the change --- this
-obviates the need for two different argument passing mechanisms as in
+eliminates the need for two different argument passing mechanisms as in
Pascal.