summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/expressions.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/ref/models/expressions.txt b/docs/ref/models/expressions.txt
index 3238207c5b..81aa3a92b2 100644
--- a/docs/ref/models/expressions.txt
+++ b/docs/ref/models/expressions.txt
@@ -438,11 +438,11 @@ return type.
Built-in database functions (such as
:class:`~django.db.models.functions.Cast`) vary in whether arguments such
- as ``output_field`` can be supplied positionally or only by keyword. For
- ``output_field`` and several other cases, the input ultimately reaches
- ``Func()`` as a keyword argument, so the advice to avoid constructing
- keyword arguments from untrusted user input applies as equally to these
- arguments as it does to ``**extra``.
+ as ``output_field`` can be supplied as positional arguments or only by
+ keyword. For ``output_field`` and several other cases, the input ultimately
+ reaches ``Func()`` as a keyword argument, so the advice to avoid
+ constructing keyword arguments from untrusted user input applies as equally
+ to these arguments as it does to ``**extra``.
``Aggregate()`` expressions
---------------------------