From ccd615c1a7b9545c4e3a8ab7451633ae909aeb50 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 30 Jun 2003 04:27:31 +0000 Subject: [PATCH] SF bug #762990: Awful Grammar in Python Tutorial Fixed a nit. --- 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 9386774ac5d..76663a74580 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.