summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-02-21 18:28:35 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-02-21 18:28:35 +0000
commit5b560ec0c06478327765297e3863cd9314ff167b (patch)
tree9fd812844e6eea3f44ac4f015aa7c581e62a1ce5 /docs/ref
parent0e54c23caf21e5680aff68660b5d5b5937b98262 (diff)
Fixed a few typos in the aggregation functions reference.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17569 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt22
1 files changed, 12 insertions, 10 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 103cae1240..4d6b9bc533 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2122,10 +2122,10 @@ Avg
.. class:: Avg(field)
- Returns the mean value of the given field.
+ Returns the mean value of the given field, which must be numeric.
* Default alias: ``<field>__avg``
- * Return type: float
+ * Return type: ``float``
Count
~~~~~
@@ -2135,14 +2135,15 @@ Count
Returns the number of objects that are related through the provided field.
* Default alias: ``<field>__count``
- * Return type: integer
+ * Return type: ``int``
Has one optional argument:
.. attribute:: distinct
- If distinct=True, the count will only include unique instances. This has
- the SQL equivalent of ``COUNT(DISTINCT field)``. Default value is ``False``.
+ If ``distinct=True``, the count will only include unique instances.
+ This is the SQL equivalent of ``COUNT(DISTINCT <field>)``. The default
+ value is ``False``.
Max
~~~
@@ -2172,7 +2173,7 @@ StdDev
Returns the standard deviation of the data in the provided field.
* Default alias: ``<field>__stddev``
- * Return type: float
+ * Return type: ``float``
Has one optional argument:
@@ -2183,9 +2184,10 @@ StdDev
.. admonition:: SQLite
- SQLite doesn't provide ``StdDev`` out of the box. An implementation is
- available as an extension module for SQLite. Consult the SQlite
- documentation for instructions on obtaining and installing this extension.
+ SQLite doesn't provide ``StdDev`` out of the box. An implementation
+ is available as an extension module for SQLite. Consult the `SQlite
+ documentation`_ for instructions on obtaining and installing this
+ extension.
Sum
~~~
@@ -2205,7 +2207,7 @@ Variance
Returns the variance of the data in the provided field.
* Default alias: ``<field>__variance``
- * Return type: float
+ * Return type: ``float``
Has one optional argument: