diff options
author | Raymond Hettinger <python@rcn.com> | 2003-06-30 04:27:31 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-06-30 04:27:31 (GMT) |
commit | ccd615c1a7b9545c4e3a8ab7451633ae909aeb50 (patch) | |
tree | ec100469beeea712f9a01891efd5a78b87361e29 /Doc/tut | |
parent | d693a81595ae3c617f5dd20f9a8bf8b7f130683b (diff) | |
download | cpython-ccd615c1a7b9545c4e3a8ab7451633ae909aeb50.zip cpython-ccd615c1a7b9545c4e3a8ab7451633ae909aeb50.tar.gz cpython-ccd615c1a7b9545c4e3a8ab7451633ae909aeb50.tar.bz2 |
SF bug #762990: Awful Grammar in Python Tutorial
Fixed a nit.
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 9386774..76663a7 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. |