cwvreg.py
changeset 6162 76bd320c5ace
parent 6141 b8287e54b528
parent 6152 6824f8b61098
child 6454 97203d0af4cb
--- a/cwvreg.py	Thu Aug 26 10:29:32 2010 +0200
+++ b/cwvreg.py	Thu Aug 26 11:45:57 2010 +0200
@@ -161,14 +161,14 @@
 'primary'`) view (`__registry__ = 'views'`) for a result set
 containing a `Card` entity, two objects will probably be selectable:
 
-* the default primary view (`__select__ = implements('Any')`), meaning
+* the default primary view (`__select__ = is_instance('Any')`), meaning
   that the object is selectable for any kind of entity type
 
-* the specific `Card` primary view (`__select__ = implements('Card')`,
+* the specific `Card` primary view (`__select__ = is_instance('Card')`,
   meaning that the object is selectable for Card entities
 
 Other primary views specific to other entity types won't be selectable in this
-case. Among selectable objects, the `implements('Card')` selector will return a higher
+case. Among selectable objects, the `is_instance('Card')` selector will return a higher
 score since it's more specific, so the correct view will be selected as expected.
 
 .. _SelectionAPI: