summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-05-10 15:09:36 (GMT)
committerFred Drake <fdrake@acm.org>2001-05-10 15:09:36 (GMT)
commit7c116d7acb8edcc7adcf96a84035e585be37fb9c (patch)
tree4d721231c3cb0a9b6052307dc1dbc6e54b3732e6
parente9735ac215327450f46dcf8e26d0581fb3e1a406 (diff)
downloadcpython-7c116d7acb8edcc7adcf96a84035e585be37fb9c.zip
cpython-7c116d7acb8edcc7adcf96a84035e585be37fb9c.tar.gz
cpython-7c116d7acb8edcc7adcf96a84035e585be37fb9c.tar.bz2
Fix typo reported by David Goodger. This closes SF patch #422383.
-rw-r--r--Doc/ref/ref7.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref7.tex b/Doc/ref/ref7.tex
index 9107fe9..c88d983 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.