[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/preference/README.txt Minor typo and formatting fixes.

Benji York benji at zope.com
Fri May 20 14:22:40 EDT 2005


Log message for revision 30470:
  Minor typo and formatting fixes.
  

Changed:
  U   Zope3/trunk/src/zope/app/preference/README.txt

-=-
Modified: Zope3/trunk/src/zope/app/preference/README.txt
===================================================================
--- Zope3/trunk/src/zope/app/preference/README.txt	2005-05-20 17:56:28 UTC (rev 30469)
+++ Zope3/trunk/src/zope/app/preference/README.txt	2005-05-20 18:22:40 UTC (rev 30470)
@@ -25,7 +25,7 @@
 ------------------
 
 Preferences are grouped in preference groups and the preferences inside a
-group a spcified via the preferences group schema:
+group are specified via the preferences group schema:
 
   >>> import zope.interface
   >>> import zope.schema
@@ -48,9 +48,9 @@
   ...                     u"at the top of the screen.",
   ...         default=True)
 
-Now we can instantiate the preference group. Each preference group must have
-an id by which it can be accessed and has an optional title and description
-field for UI purposes:
+Now we can instantiate the preference group. Each preference group must have an
+ID by which it can be accessed and optional title and description fields for UI
+purposes:
 
   >>> settings = preference.PreferenceGroup(
   ...     "ZMISettings",
@@ -102,8 +102,8 @@
 
 We also need a principal annotations utility, in which we store the settings:
 
-  >>> from zope.app.principalannotation.interfaces import \
-  ...         IPrincipalAnnotationUtility
+  >>> from zope.app.principalannotation.interfaces import (
+  ...         IPrincipalAnnotationUtility)
   >>> class PrincipalAnnotations(dict):
   ...     zope.interface.implements(IPrincipalAnnotationUtility)
   ...



More information about the Zope3-Checkins mailing list