summaryrefslogtreecommitdiff
path: root/Doc/tut/tut.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-11-29 13:12:44 +0000
committerFred Drake <fdrake@acm.org>2004-11-29 13:12:44 +0000
commit6e3fa2911d2f50b499b5f72262ea2f98e3e47831 (patch)
tree033ec0c37e816ca5fd0ec367cf2252e338ad273e /Doc/tut/tut.tex
parentaf1389a2fc1321a46f10c9052d320f81822d5af9 (diff)
downloadcpython-git-6e3fa2911d2f50b499b5f72262ea2f98e3e47831.tar.gz
REVERT revision 1.260; the trunk is FROZEN.
This change can be made on the trunk and release24-maint branch after the trunk is unfrozen.
Diffstat (limited to 'Doc/tut/tut.tex')
-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 091fb1f3e5..df798b46b6 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -4413,7 +4413,7 @@ created automatically.
Another key feature is that the local variables and execution state
are automatically saved between calls. This made the function easier to write
-and much more clear than an approach using instance variables like
+and much more clear than an approach using class variables like
\code{self.index} and \code{self.data}.
In addition to automatic method creation and saving program state, when