[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/catalog/README.txt
Fix some typos
Gary Poster
gary at zope.com
Fri Apr 15 12:17:05 EDT 2005
Log message for revision 30004:
Fix some typos
Changed:
U Zope3/trunk/src/zope/app/catalog/README.txt
-=-
Modified: Zope3/trunk/src/zope/app/catalog/README.txt
===================================================================
--- Zope3/trunk/src/zope/app/catalog/README.txt 2005-04-15 16:16:41 UTC (rev 30003)
+++ Zope3/trunk/src/zope/app/catalog/README.txt 2005-04-15 16:17:05 UTC (rev 30004)
@@ -11,7 +11,7 @@
other things, an attribute index. It indexes attributes of objects. To
see how this works, we'll create a demonstration attribute index. Our
attribute index will simply keep track of objects that have a given
-attribute value. The `catalog` package provides an attrbute-index
+attribute value. The `catalog` package provides an attribute-index
mix-in class that is meant to work with a base indexing class. First,
we'll write the base index class:
@@ -71,7 +71,7 @@
... ):
... zope.interface.implements(zope.app.catalog.interfaces.ICatalogIndex)
-Unfortunately, because of the way we currenty handle containment
+Unfortunately, because of the way we currently handle containment
constraints, we have to provide `ICatalogIndex`, which extends
`IContained`. We subclass `Contained` to get an implementation for
`IContained`.
@@ -175,7 +175,7 @@
[0, 0, 0]
Note that you don't have to use the catalog's search methods. You can
-access it's indexes directly, since the catalog is a mapping:
+access its indexes directly, since the catalog is a mapping:
>>> [(name, cat[name].field_name) for name in cat]
[(u'age', 'age'), (u'color', 'color'), (u'size', 'sz')]
More information about the Zope3-Checkins
mailing list