summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorRamiro Morales <ramiro@users.noreply.github.com>2020-07-22 08:10:05 -0300
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-07-22 22:53:20 +0200
commit51e536178cba9489b9d759f69f72f442af16ba32 (patch)
tree98820df251de0cad68cea22d8a5bddeee36d9ed9 /docs/ref
parentf65454801bfa13fc043fee0aca8f49af41380683 (diff)
Fixed typo in docs/ref/models/querysets.txt.
Diffstat (limited to 'docs/ref')
-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 1c82f378b9..fa7596064b 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -859,8 +859,8 @@ duplicate values, use the ``all=True`` argument.
of the type of the first ``QuerySet`` even if the arguments are ``QuerySet``\s
of other models. Passing different models works as long as the ``SELECT`` list
is the same in all ``QuerySet``\s (at least the types, the names don't matter
-as long as the types in the same order). In such cases, you must use the column
-names from the first ``QuerySet`` in ``QuerySet`` methods applied to the
+as long as the types are in the same order). In such cases, you must use the
+column names from the first ``QuerySet`` in ``QuerySet`` methods applied to the
resulting ``QuerySet``. For example::
>>> qs1 = Author.objects.values_list('name')