[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/pau/ Fixed typos.

Benji York benji at zope.com
Mon Jan 3 14:22:24 EST 2005


Log message for revision 28713:
  Fixed typos.

Changed:
  U   Zope3/trunk/src/zope/app/pau/README.txt
  U   Zope3/trunk/src/zope/app/pau/groupfolder.txt
  U   Zope3/trunk/src/zope/app/pau/principalfolder.txt

-=-
Modified: Zope3/trunk/src/zope/app/pau/README.txt
===================================================================
--- Zope3/trunk/src/zope/app/pau/README.txt	2005-01-03 18:43:40 UTC (rev 28712)
+++ Zope3/trunk/src/zope/app/pau/README.txt	2005-01-03 19:22:23 UTC (rev 28713)
@@ -526,7 +526,7 @@
 searching: 
 
 - A plugin can provide IQuerySchemaSearch, in addition to
-  `IPrincipalSearchPlugin`.  In this case, the plugin provises a search
+  `IPrincipalSearchPlugin`.  In this case, the plugin provides a search
   method and a schema that describes the input to be provided to the
   search method.
 

Modified: Zope3/trunk/src/zope/app/pau/groupfolder.txt
===================================================================
--- Zope3/trunk/src/zope/app/pau/groupfolder.txt	2005-01-03 18:43:40 UTC (rev 28712)
+++ Zope3/trunk/src/zope/app/pau/groupfolder.txt	2005-01-03 19:22:23 UTC (rev 28713)
@@ -16,8 +16,8 @@
   >>> groups['g1'] = g1
 
 Groups are defined with respect to an authentication service.  Groups
-must be accessable via an authentication service and can contain
-principals accessable via an authentication service.
+must be accessible via an authentication service and can contain
+principals accessible via an authentication service.
 
 To illustrate the group interaction with the authentication service,
 we'll create a sample authentication service:
@@ -56,7 +56,7 @@
   ...         setGroupsForPrincipal(PrincipalCreatedEvent(principal))
   ...         return principal
 
-This class doesn't really implement the fill `IAuthenticationService`
+This class doesn't really implement the full `IAuthenticationService`
 interface, but it implements the `getPrincipal` method used by groups.
 It works very much like PAU.  It creates principals on demand.  It
 calls `setGroupsForPrincipal`, which is normally called as an event
@@ -85,7 +85,7 @@
   >>> groups.getGroupsForPrincipal('p1')
   (u'group.g1',)
 
-Note that the group id is a concatination of the group-folder prefix
+Note that the group id is a concatenation of the group-folder prefix
 and the name of the group-information object within the folder.
 
 If we delete a group:

Modified: Zope3/trunk/src/zope/app/pau/principalfolder.txt
===================================================================
--- Zope3/trunk/src/zope/app/pau/principalfolder.txt	2005-01-03 18:43:40 UTC (rev 28712)
+++ Zope3/trunk/src/zope/app/pau/principalfolder.txt	2005-01-03 19:22:23 UTC (rev 28713)
@@ -29,9 +29,9 @@
     'login': 'login1',
     'title': 'Principal 1'})
 
-we get back a principal id and supplimentary information, including the
+we get back a principal id and supplementary information, including the
 principal title and description.  Note that the principal id is a
-concatination of the principal-folder prefix and the name of the
+concatenation of the principal-folder prefix and the name of the
 principal-information object within the folder.
 
 None is returned if the credentials are invalid:
@@ -121,7 +121,7 @@
 Changing credentials
 --------------------
 
-Creedentials can be changed by modifying principal-information
+Credentials can be changed by modifying principal-information
 objects:
 
   >>> p1.login = 'bob'



More information about the Zope3-Checkins mailing list