[Checkins] SVN: z3c.breadcrumb/trunk/src/z3c/breadcrumb/ Typo fixes.

Marius Gedminas marius at pov.lt
Fri Feb 8 14:47:19 EST 2008


Log message for revision 83674:
  Typo fixes.
  
  

Changed:
  U   z3c.breadcrumb/trunk/src/z3c/breadcrumb/README.txt
  U   z3c.breadcrumb/trunk/src/z3c/breadcrumb/browser.py
  U   z3c.breadcrumb/trunk/src/z3c/breadcrumb/interfaces.py

-=-
Modified: z3c.breadcrumb/trunk/src/z3c/breadcrumb/README.txt
===================================================================
--- z3c.breadcrumb/trunk/src/z3c/breadcrumb/README.txt	2008-02-08 19:43:08 UTC (rev 83673)
+++ z3c.breadcrumb/trunk/src/z3c/breadcrumb/README.txt	2008-02-08 19:47:19 UTC (rev 83674)
@@ -38,7 +38,7 @@
 There is a generic breadcrumb implementation which is registered by
 default. If we do not implement a custom IBreadcrumb the generic adapter will
 return the ``title`` or ``__name__`` of the item. Let's register the default
-adapter, this is normaly done in ``configure.zcml``:
+adapter, this is normally done in ``configure.zcml``:
 
   >>> zope.component.provideAdapter(browser.GenericBreadcrumb)
 
@@ -120,8 +120,8 @@
 ------------
 
 There is also a IBreadcrumbs adapter which knows how to collect breadcrumb
-informations for each item he traverses. We need to setup a little bit
-infrastucture:
+informations for each item he traverses. We need to setup a little bit of
+infrastructure:
 
   >>> root = rootFolder
   >>> root['office'] = office

Modified: z3c.breadcrumb/trunk/src/z3c/breadcrumb/browser.py
===================================================================
--- z3c.breadcrumb/trunk/src/z3c/breadcrumb/browser.py	2008-02-08 19:43:08 UTC (rev 83673)
+++ z3c.breadcrumb/trunk/src/z3c/breadcrumb/browser.py	2008-02-08 19:47:19 UTC (rev 83674)
@@ -32,7 +32,7 @@
 
 
 class Breadcrumbs(zope.location.Location):
-    """Breadcrumbs implementation using IBreadcrum adapters."""
+    """Breadcrumbs implementation using IBreadcrumb adapters."""
     zope.interface.implements(interfaces.IBreadcrumbs)
     zope.component.adapts(zope.interface.Interface, IHTTPRequest)
 

Modified: z3c.breadcrumb/trunk/src/z3c/breadcrumb/interfaces.py
===================================================================
--- z3c.breadcrumb/trunk/src/z3c/breadcrumb/interfaces.py	2008-02-08 19:43:08 UTC (rev 83673)
+++ z3c.breadcrumb/trunk/src/z3c/breadcrumb/interfaces.py	2008-02-08 19:47:19 UTC (rev 83674)
@@ -27,7 +27,7 @@
     information from each breadcrumb name.
     """
 
-    crumbs = zope.interface.Attribute('An iteratable of all breadcrumbs.')
+    crumbs = zope.interface.Attribute('An iterable of all breadcrumbs.')
 
 
 class IBreadcrumb(zope.interface.Interface):
@@ -45,6 +45,7 @@
 
     activeURL = zope.schema.Bool(
         title=u'Active',
-        description=u'Tells whether the breadcrumb link should active.',
+        description=u'Tells whether the breadcrumb link should be active.',
         required=True,
         default=True)
+



More information about the Checkins mailing list