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
This commit is contained in:
Adrian Holovaty 2010-01-09 19:08:03 +00:00
parent 6629d1e89b
commit e21d3af940
1 changed files with 1 additions and 1 deletions

View File

@ -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}, ...]