Author: mtredinnick
Date: 2009-04-11 21:00:36 -0500 (Sat, 11 Apr 2009)
New Revision: 10529

Modified:
   django/trunk/docs/topics/db/aggregation.txt
Log:
Fixed #10490 -- Small wording correction in the docs. Thanks, matehat.

Modified: django/trunk/docs/topics/db/aggregation.txt
===================================================================
--- django/trunk/docs/topics/db/aggregation.txt 2009-04-12 00:13:03 UTC (rev 
10528)
+++ django/trunk/docs/topics/db/aggregation.txt 2009-04-12 02:00:36 UTC (rev 
10529)
@@ -222,7 +222,7 @@
 When an ``annotate()`` clause is applied to a query, the annotation is
 computed over the state of the query up to the point where the annotation
 is requested. The practical implication of this is that ``filter()`` and
-``annotate()`` are not transitive operations -- that is, there is a
+``annotate()`` are not commutative operations -- that is, there is a
 difference between the query::
 
     >>> 
Publisher.objects.annotate(num_books=Count('book')).filter(book__rating__gt=3.0)


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to