From: Terry Jan Reedy Date: Wed, 11 Jan 2012 19:51:07 +0000 (-0500) Subject: Minor correction. Closes #11418 X-Git-Tag: v2.7.3rc1~177^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=477a06c14297423181200929974d350ac81d5622;p=python Minor correction. Closes #11418 --- diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index c3640a05f7..9f115b0f8f 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -409,8 +409,8 @@ argument:: self.add(x) Methods may reference global names in the same way as ordinary functions. The -global scope associated with a method is the module containing the class -definition. (The class itself is never used as a global scope.) While one +global scope associated with a method is the module containing its +definition. (A class is never used as a global scope.) While one rarely encounters a good reason for using global data in a method, there are many legitimate uses of the global scope: for one thing, functions and modules imported into the global scope can be used by methods, as well as functions and