From: Raymond Hettinger Date: Mon, 29 Nov 2004 08:53:14 +0000 (+0000) Subject: Fix a nit. X-Git-Tag: v2.4~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a98825ce4889d54caca1f9278aca6e7834ca320f;p=python Fix a nit. --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index df798b46b6..091fb1f3e5 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