From: Raymond Hettinger Date: Tue, 12 Aug 2003 00:01:16 +0000 (+0000) Subject: SF patch#786531 'the the' typo. Contributed by George Yoshida X-Git-Tag: v2.3.1~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c8980aecdbf7f435d1688a3b9d58ad13e2f06f2;p=thirdparty%2FPython%2Fcpython.git SF patch#786531 'the the' typo. Contributed by George Yoshida --- diff --git a/Doc/ref/ref7.tex b/Doc/ref/ref7.tex index 1c0a0ee03186..346dce07c28f 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