[Zope3-checkins] CVS: Zope3/src/zope/interface - interfaces.py:1.15

Anthony Baxter anthony at interlink.com.au
Mon Sep 8 06:15:55 EDT 2003


Update of /cvs-repository/Zope3/src/zope/interface
In directory cvs.zope.org:/tmp/cvs-serv26268

Modified Files:
	interfaces.py 
Log Message:
typos in docstrings


=== Zope3/src/zope/interface/interfaces.py 1.14 => 1.15 ===
--- Zope3/src/zope/interface/interfaces.py:1.14	Mon Jun  2 07:08:13 2003
+++ Zope3/src/zope/interface/interfaces.py	Mon Sep  8 05:15:54 2003
@@ -168,7 +168,7 @@
         """Test whether the interface is implemented by the object
 
         Return true of the object asserts that it implements the
-        interface, including asseting that it implements an extended
+        interface, including asserting that it implements an extended
         interface.
         """
 
@@ -176,7 +176,7 @@
         """Test whether the interface is implemented by instances of the class
 
         Return true of the class asserts that its instances implement the
-        interface, including asseting that they implement an extended
+        interface, including asserting that they implement an extended
         interface.
         """
 
@@ -188,7 +188,7 @@
 
         Normally, only directly defined attributes are included. If
         a true positional or keyword argument is given, then
-        attributes defined by nase classes will be included.
+        attributes defined by base classes will be included.
         """
 
     def namesAndDescriptions(all=False):
@@ -200,7 +200,7 @@
 
         Normally, only directly defined attributes are included. If
         a true positional or keyword argument is given, then
-        attributes defined by nase classes will be included.
+        attributes defined by base classes will be included.
         """
 
     def getDescriptionFor(name):
@@ -349,7 +349,7 @@
         attempt will be made to find the component that most closely
         matches the input arguments.
 
-        The object returned could have been registred to require None.
+        The object returned could have been registered to require None.
 
         Note that the implements may be None, it which case a
         component will be returned only if it was registered with a
@@ -370,7 +370,7 @@
         """
 
     def getRegistered(require, provide):
-        """return data registred specificly for the given interfaces
+        """return data registered specifically for the given interfaces
 
         None is returned if nothing is registered.
         """
@@ -399,7 +399,7 @@
         We've registered C to require R1 and provide P2.  Given this,
         if we call getRegisteredMatching:
 
-          registery.getRegisteredMatching([R2], [P1])
+          registry.getRegisteredMatching([R2], [P1])
 
         the returned value will include:
 
@@ -493,7 +493,7 @@
         Removing an interface that is not in the specification does
         not raise an error. Doing so has no effect.
 
-        Removing an interface also removes subinterfaces of the interface.
+        Removing an interface also removes sub-interfaces of the interface.
 
         """
 




More information about the Zope3-Checkins mailing list