[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/ServiceManager - IServiceManager.py:1.3

Barry Warsaw barry@wooz.org
Wed, 12 Jun 2002 15:39:30 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/ServiceManager
In directory cvs.zope.org:/tmp/cvs-serv23611

Modified Files:
	IServiceManager.py 
Log Message:
Fixed some typos and re-wrapped.


=== Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/IServiceManager.py 1.2 => 1.3 ===
 
 class IServiceManager(IContainer, IGlobalServiceManager):
-    """
-    Service Managers act as containers for Services.
+    """Service Managers act as containers for Services.
     
-    If a Service Manager is asked for a service it
-    checks for those it contains, before using a context
-    based lookup to find another service manager to delegate
-    to. If no other service manager is found they defer
-    to the ComponentArchitecture ServiceManager which
-    contains file based services.
+    If a Service Manager is asked for a service, it checks for those it
+    contains before using a context based lookup to find another service
+    manager to delegate to.  If no other service manager is found they defer
+    to the ComponentArchitecture ServiceManager which contains file based
+    services.
     """
 
     def bindService(serviceName, serviceComponentName):
-        """provide a service implementation.  If the named object
-        implements IBindingAware, the wrapped object is notified as per
-        that interface"""
+        """Provide a service implementation.
+
+        If the named object implements IBindingAware, the wrapped object is
+        notified as per that interface.
+        """
 
     def unbindService(serviceName):
-        """no longer provide a service implementation.  If the named
-        object implements IBindingAware, the wrapped object is notified
-        as per that interface"""
+        """No longer provide a service implementation.
+
+        If the named object implements IBindingAware, the wrapped object is
+        notified as per that interface.
+        """
 
     def getBoundService(name):
-        """retrieve a bound service implimentation
+        """Retrieve a bound service implementation.
 
-        Get the component currently bound to the named Service
-        in this ServiceService.  Does not search context.
+        Get the component currently bound to the named Service in this
+        ServiceService.   Does not search context.
         """
-