From: Raymond Hettinger Date: Mon, 30 Jun 2003 04:27:31 +0000 (+0000) Subject: SF bug #762990: Awful Grammar in Python Tutorial X-Git-Tag: v2.3c1~227 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ccd615c1a7b9545c4e3a8ab7451633ae909aeb50;p=python SF bug #762990: Awful Grammar in Python Tutorial Fixed a nit. --- 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.