summaryrefslogtreecommitdiffstats
path: root/Doc/ref
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-08-12 00:01:17 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-08-12 00:01:17 (GMT)
commitc7a26562f93b8f6fffd65b506ff2aa65297717e4 (patch)
treea2d4b1f40f27b1b8b7bad61f92bb5ba6aac942d5 /Doc/ref
parentf17d65da3a16f2a61805ca4c77f2515ba0a2e0b8 (diff)
downloadcpython-c7a26562f93b8f6fffd65b506ff2aa65297717e4.zip
cpython-c7a26562f93b8f6fffd65b506ff2aa65297717e4.tar.gz
cpython-c7a26562f93b8f6fffd65b506ff2aa65297717e4.tar.bz2
SF patch#786531 'the the' typo. Contributed by George Yoshida
Diffstat (limited to 'Doc/ref')
-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 1c0a0ee..346dce0 100644
--- a/Doc/ref/ref7.tex
+++ b/Doc/ref/ref7.tex
@@ -435,7 +435,7 @@ class object in the original local namespace.
\strong{Programmer's note:} variables defined in the class definition
are class variables; they are shared by all instances. To define
-instance variables, they must be given a value in the the
+instance variables, they must be given a value in 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