[Zope3-checkins] CVS: Zope3/src/zope/app/services - README.txt:1.9

Martijn Faassen m.faassen@vet.uu.nl
Sun, 22 Jun 2003 10:27:31 -0400


Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv29278

Modified Files:
	README.txt 
Log Message:
Typo fixes.


=== Zope3/src/zope/app/services/README.txt 1.8 => 1.9 ===
--- Zope3/src/zope/app/services/README.txt:1.8	Sun Jun 22 09:27:54 2003
+++ Zope3/src/zope/app/services/README.txt	Sun Jun 22 10:27:30 2003
@@ -8,7 +8,7 @@
 This package includes implementations of several local services.
 It also contains infrastructure for implementing local services.
 
-Implementing lolcal services is not too difficult, but there can be a
+Implementing local services is not too difficult, but there can be a
 lot of details that are hard to remember.
 
 A service is a component that implements a specific interface *and*
@@ -32,7 +32,7 @@
   services by definition have nothing "above" them.
 
   (Note that it's up to the service to decide what form the
-  collaboration will take.  An exceptable form of collaboration is to
+  collaboration will take.  An acceptable form of collaboration is to
   not collaborate at all.
 
 Registration
@@ -46,9 +46,9 @@
 
 An important feature of component registration services is that they
 support multiple conflicting registrations for the same registration
-parameters.  At most one of the registrations is active.  A site
-developer can switch between alternate components by simply changing
-which one is active.
+parameters.  At most one of the conflicting registrations is active.
+A site developer can switch between alternate components by simply
+changing which one is active.
 
 Consider the following scenario.  A product provides a utility.  A
 site manager gets a new version of the utility and installs
@@ -93,8 +93,8 @@
 
 - Module-global registrations register objects stored in
   modules. Objects in modules aren't managable directly, so we can't
-  manage their registrations trough them.  (The state of an object
-  stored in a module must be respresented soley by the module source.)
+  manage their registrations through them.  (The state of an object
+  stored in a module must be represented solely by the module source.)
   
   Module-global objects are named using dotted names.