diff options
author | Raymond Hettinger <python@rcn.com> | 2004-11-29 08:53:14 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-11-29 08:53:14 (GMT) |
commit | a98825ce4889d54caca1f9278aca6e7834ca320f (patch) | |
tree | ba57209c52c4624438087729ce6686433e48e6b8 /Doc/tut | |
parent | e1defa4175426594be53c1bc6c3d2f02a0952bae (diff) | |
download | cpython-a98825ce4889d54caca1f9278aca6e7834ca320f.zip cpython-a98825ce4889d54caca1f9278aca6e7834ca320f.tar.gz cpython-a98825ce4889d54caca1f9278aca6e7834ca320f.tar.bz2 |
Fix 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 df798b4..091fb1f 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 |