From 1aa0d1b4a696c51c97a4b2294488e51354350678 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 12 Apr 2009 02:00:36 +0000 Subject: [PATCH] Fixed #10490 -- Small wording correction in the docs. Thanks, matehat. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10529 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/db/aggregation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt index ade2f505a7..b0731798c5 100644 --- a/docs/topics/db/aggregation.txt +++ b/docs/topics/db/aggregation.txt @@ -222,7 +222,7 @@ in which the clauses are applied to the ``QuerySet``. 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)