]> granicus.if.org Git - python/commitdiff
Minor correction. #11418
authorTerry Jan Reedy <tjreedy@udel.edu>
Wed, 11 Jan 2012 19:54:34 +0000 (14:54 -0500)
committerTerry Jan Reedy <tjreedy@udel.edu>
Wed, 11 Jan 2012 19:54:34 +0000 (14:54 -0500)
Doc/tutorial/classes.rst

index 6ee2e94da84b279921a789a09509b975abdc3bf7..68c4e5d8868719585d07da03775c900dbe60d093 100644 (file)
@@ -458,8 +458,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