doc/book/en/development/entityclasses/load-sort.rst
changeset 2539 0f26a76b0348
parent 2172 cf8f9180e63e
child 2546 df456fa1b053
--- a/doc/book/en/development/entityclasses/load-sort.rst	Tue Jul 28 21:14:47 2009 +0200
+++ b/doc/book/en/development/entityclasses/load-sort.rst	Tue Jul 28 21:26:46 2009 +0200
@@ -2,14 +2,14 @@
 Loaded attributes and default sorting management
 ````````````````````````````````````````````````
 
-* The class attribute `fetch_attrs` allows to defined in an entity class
-  a list of names of attributes or relations that should be automatically
-  loaded when we recover the entities of this type. In the case of relations,
+* The class attribute `fetch_attrs` allows to define in an entity class a list
+  of names of attributes or relations that should be automatically loaded when
+  entities of this type are fetched from the database. In the case of relations,
   we are limited to *subject of cardinality `?` or `1`* relations.
 
 * The class method `fetch_order(attr, var)` expects an attribute (or relation)
   name as a parameter and a variable name, and it should return a string
-  to use in the requirement `ORDER BY` of an RQL query to automatically
+  to use in the requirement `ORDERBY` of an RQL query to automatically
   sort the list of entities of such type according to this attribute, or
   `None` if we do not want to sort on the attribute given in the parameter.
   By default, the entities are sorted according to their creation date.