From e21d3af940ffb4e1d542ec4b910e77fc81289687 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 9 Jan 2010 19:08:03 +0000 Subject: [PATCH] Fixed #12555 -- Fixed typo in docs/ref/models/querysets.txt. Thanks, y_feldblum git-svn-id: http://code.djangoproject.com/svn/django/trunk@12126 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/models/querysets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index e261e3bbe2..a660585888 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -386,7 +386,7 @@ A couple of subtleties that are worth mentioning: For example:: >>> Entry.objects.values() - [{'blog_id: 1, 'headline': u'First Entry', ...}, ...] + [{'blog_id': 1, 'headline': u'First Entry', ...}, ...] >>> Entry.objects.values('blog') [{'blog': 1}, ...]