From b732afe30a66ac9ae13c3a43e582fb7cb6315ee4 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Wed, 22 Jul 2020 08:10:05 -0300 Subject: [PATCH] [3.0.x] Fixed typo in docs/ref/models/querysets.txt. Backport of 51e536178cba9489b9d759f69f72f442af16ba32 from master --- docs/ref/models/querysets.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 6f0b74ec92..c72c7885d0 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -851,8 +851,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')