From e8c88c93ecb9cedebee90d55acc8a42649720ae0 Mon Sep 17 00:00:00 2001 From: Tim Graham <timograham@gmail.com> Date: Wed, 3 Dec 2014 20:07:40 -0500 Subject: [PATCH] [1.7.x] Fixed typo in aggregation docs. --- docs/topics/db/aggregation.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt index 6f09ea9c52..dc48d196ac 100644 --- a/docs/topics/db/aggregation.txt +++ b/docs/topics/db/aggregation.txt @@ -185,10 +185,10 @@ modified using any other ``QuerySet`` operation, including ``filter()``, ``query`` property of your ``QuerySet``. For instance, combining multiple aggregations with ``annotate()`` will - yield the wrong results, as `multiple tables are the cross joined`_, + yield the wrong results, as `multiple tables are cross joined`_, resulting in duplicate row aggregations. -.. _multiple tables are the cross joined: https://code.djangoproject.com/ticket/10060 +.. _multiple tables are cross joined: https://code.djangoproject.com/ticket/10060 Joins and aggregates ====================