summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorpp <pp@users.noreply.github.com>2016-01-10 17:48:16 +0100
committerTim Graham <timograham@gmail.com>2016-01-11 18:05:56 -0500
commit1cbc556bcee57c1d2cbbbe3e6ce3b8d9949f186f (patch)
treeb494f9bc739fef040e013e1cde9bc9e48b1c880d /docs/ref/models
parent27ef6403c8b9f332feb1f9fe52053ded0b91da85 (diff)
[1.9.x] Added missing period to "etc.".
Backport of b34ff66e5bae3760273255fa5b2525eb21a5eb63 from master
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/querysets.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index a80eef8435..988d9719c0 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -227,7 +227,7 @@ annotate
Annotates each object in the ``QuerySet`` with the provided list of :doc:`query
expressions </ref/models/expressions>`. An expression may be a simple value, a
reference to a field on the model (or any related models), or an aggregate
-expression (averages, sums, etc) that has been computed over the objects that
+expression (averages, sums, etc.) that has been computed over the objects that
are related to the objects in the ``QuerySet``.
.. versionadded:: 1.8
@@ -1967,7 +1967,7 @@ aggregate
.. method:: aggregate(*args, **kwargs)
-Returns a dictionary of aggregate values (averages, sums, etc) calculated over
+Returns a dictionary of aggregate values (averages, sums, etc.) calculated over
the ``QuerySet``. Each argument to ``aggregate()`` specifies a value that will
be included in the dictionary that is returned.