]> granicus.if.org Git - python/commitdiff
Fix typo reported by David Goodger. This closes SF patch #422383.
authorFred Drake <fdrake@acm.org>
Thu, 10 May 2001 15:09:36 +0000 (15:09 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 10 May 2001 15:09:36 +0000 (15:09 +0000)
Doc/ref/ref7.tex

index 9107fe9ca99551e5cd26bbe51c25301577cd91ab..c88d983ff43ef407181d9068b0dd0a56a5651de8 100644 (file)
@@ -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.