diff options
author | Fred Drake <fdrake@acm.org> | 2001-05-10 15:09:36 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-05-10 15:09:36 +0000 |
commit | 5dc616a02dff3d26d993830c73594842db5dc689 (patch) | |
tree | 18225d110389174404b7da48bcb76e989ce28f73 /Doc/ref | |
parent | 5c0abca0598098c6fba63aeee60ee438793e1d3a (diff) | |
download | cpython-5dc616a02dff3d26d993830c73594842db5dc689.tar.gz |
Fix typo reported by David Goodger. This closes SF patch #422383.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref7.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref7.tex b/Doc/ref/ref7.tex index 9107fe9ca9..c88d983ff4 100644 --- a/Doc/ref/ref7.tex +++ b/Doc/ref/ref7.tex @@ -401,6 +401,6 @@ are class variables; they are shared by all instances. To define instance variables, they must be given a value in the the \method{__init__()} method or in another method. Both class and instance variables are accessible through the notation -```code{self.name}'', and an instance variable hides a class variable +``\code{self.name}'', and an instance variable hides a class variable with the same name when accessed in this way. Class variables with immutable values can be used as defaults for instance variables. |