[Zope3-checkins] CVS: Zope3/src/zope/schema - accessors.py:1.5

Anthony Baxter anthony at interlink.com.au
Thu Sep 25 04:36:33 EDT 2003


Update of /cvs-repository/Zope3/src/zope/schema
In directory cvs.zope.org:/tmp/cvs-serv7188

Modified Files:
	accessors.py 
Log Message:
tpyo fixups.


=== Zope3/src/zope/schema/accessors.py 1.4 => 1.5 ===
--- Zope3/src/zope/schema/accessors.py:1.4	Mon May 12 06:02:41 2003
+++ Zope3/src/zope/schema/accessors.py	Thu Sep 25 04:36:32 2003
@@ -15,7 +15,7 @@
 Field accessors
 ===============
 
-Accessors are used to model methods used to access data defgined by fields.
+Accessors are used to model methods used to access data defined by fields.
 Accessors are fields that work by decorating existing fields.
 
 To define accessors in an interface, use the accessors function::
@@ -28,9 +28,9 @@
 
 
 Normally a read accessor and a write accessor are defined.  Only a
-readaccessor is defined for read-only fields.
+read accessor is defined for read-only fields.
 
-Read accessors function as access method sepcifications and as field
+Read accessors function as access method specifications and as field
 specifications.  Write accessors are solely method specifications.
 
 $Id$
@@ -48,7 +48,7 @@
 
     # A read field accessor is a method and a field.
     # A read accessor is a decorator of a field, using the given
-    # fields proprtyoes to provide meta data.
+    # fields properties to provide meta data.
 
     def __provides__(self):
         return providedBy(self.field)




More information about the Zope3-Checkins mailing list