# HG changeset patch # User Sylvain Thenault # Date 1227249533 -3600 # Node ID ec40557606543692d3290f3d71c502cbc097892d # Parent 7a56ca431d65ea241b7d7da26d12feb72ea27c7f oops diff -r 7a56ca431d65 -r ec4055760654 doc/book/en/02-01-concepts.en.txt --- a/doc/book/en/02-01-concepts.en.txt Thu Nov 20 22:07:22 2008 +0100 +++ b/doc/book/en/02-01-concepts.en.txt Fri Nov 21 07:38:53 2008 +0100 @@ -198,7 +198,7 @@ * the object with the greatest score is selected. If multiple objects have an identical score, one of them is selected randomly (this is usually a bug) -The object's selector is the `__selector__` class method on the object's class. +The object's selector is the `__select__` class method on the object's class. The score is used to choose the most pertinent objects where there are more than one selectable object. For instance, if you're selecting the primary @@ -221,7 +221,7 @@ which is equivalent to :: - __selector__ = chainall(sel1, sel2) + __select__ = chainall(sel1, sel2) The former is prefered since it's shorter and it's ease overriding in subclasses (you have access to sub-selectors instead of the wrapping function).