From: Raymond Hettinger Date: Wed, 1 Dec 2004 04:22:38 +0000 (+0000) Subject: Fix nit. X-Git-Tag: v2.5a0~2332 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=29eb40c36596a767db5a2b680fc8815ebe094509;p=thirdparty%2FPython%2Fcpython.git Fix nit. --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index df798b46b6a4..091fb1f3e54b 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 class variables like +and much more clear than an approach using instance variables like \code{self.index} and \code{self.data}. In addition to automatic method creation and saving program state, when