From: Fred Drake Date: Thu, 10 May 2001 15:10:17 +0000 (+0000) Subject: Fix typo reported by David Goodger. This closes SF patch #422383. X-Git-Tag: v2.1.1c1~134 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=879040a0d32ded1c282cf16e6c0d5fb7be42d8d0;p=thirdparty%2FPython%2Fcpython.git Fix typo reported by David Goodger. This closes SF patch #422383. --- diff --git a/Doc/ref/ref7.tex b/Doc/ref/ref7.tex index 9107fe9ca995..c88d983ff43e 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.