From 28605a9c2665505c85561b4f33483cfd81718898 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 24 Feb 2009 02:31:09 +0000 Subject: [PATCH] Whitespace fix to [9896]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9897 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/releases/1.1-alpha-1.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/releases/1.1-alpha-1.txt b/docs/releases/1.1-alpha-1.txt index 148d2272fd..fa6f494a48 100644 --- a/docs/releases/1.1-alpha-1.txt +++ b/docs/releases/1.1-alpha-1.txt @@ -31,8 +31,10 @@ Aggregate support .. currentmodule:: django.db.models -It's now possible to run SQL aggregate queries (i.e. ``COUNT()``, ``MAX()``, ``MIN()``, etc.) from within Django's ORM. You can choose to either return -the results of the aggregate directly, or else annotate the objects in a :class:`QuerySet` with the results of the aggregate query. +It's now possible to run SQL aggregate queries (i.e. ``COUNT()``, ``MAX()``, +``MIN()``, etc.) from within Django's ORM. You can choose to either return the +results of the aggregate directly, or else annotate the objects in a +:class:`QuerySet` with the results of the aggregate query. This feature is available as new :meth:`QuerySet.aggregate()`` and :meth:`QuerySet.annotate()`` methods, and is covered in detail in :ref:`the ORM