From 2457c1866ef3586c56bd19aeaa554e78c1ed1875 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 11 Jul 2017 14:22:46 -0400 Subject: [PATCH] Refs #28352 -- Corrected another QuerySet.values_list() return type in docs example. --- 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 64e48c3ff5..8cdf32b247 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -670,10 +670,10 @@ For example, notice the behavior when querying across a :class:`~django.db.models.ManyToManyField`:: >>> Author.objects.values_list('name', 'entry__headline') - [('Noam Chomsky', 'Impressions of Gaza'), + Authors with multiple entries appear multiple times and authors without any entries have ``None`` for the entry headline.