summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt4
-rw-r--r--docs/ref/templates/builtins.txt2
-rw-r--r--docs/ref/templates/language.txt2
-rw-r--r--docs/ref/unicode.txt2
4 files changed, 5 insertions, 5 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.
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 652b7b2390..ea1c5e11a6 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -1571,7 +1571,7 @@ filesizeformat
^^^^^^^^^^^^^^
Formats the value like a 'human-readable' file size (i.e. ``'13 KB'``,
-``'4.1 MB'``, ``'102 bytes'``, etc).
+``'4.1 MB'``, ``'102 bytes'``, etc.).
For example::
diff --git a/docs/ref/templates/language.txt b/docs/ref/templates/language.txt
index 0a50adfa19..d6f13a637f 100644
--- a/docs/ref/templates/language.txt
+++ b/docs/ref/templates/language.txt
@@ -168,7 +168,7 @@ used template filters:
:tfilter:`filesizeformat`
Formats the value like a "human-readable" file size (i.e. ``'13 KB'``,
- ``'4.1 MB'``, ``'102 bytes'``, etc). For example::
+ ``'4.1 MB'``, ``'102 bytes'``, etc.). For example::
{{ value|filesizeformat }}
diff --git a/docs/ref/unicode.txt b/docs/ref/unicode.txt
index 7c359da315..f3bfc8e396 100644
--- a/docs/ref/unicode.txt
+++ b/docs/ref/unicode.txt
@@ -251,7 +251,7 @@ Models
======
Because all strings are returned from the database as Unicode strings, model
-fields that are character based (CharField, TextField, URLField, etc) will
+fields that are character based (CharField, TextField, URLField, etc.) will
contain Unicode values when Django retrieves data from the database. This
is *always* the case, even if the data could fit into an ASCII bytestring.