Skip to content

Commit

Permalink
Fixed #12555 -- Fixed typo in docs/ref/models/querysets.txt. Thanks, …
Browse files Browse the repository at this point in the history
…y_feldblum

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12126 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jan 9, 2010
1 parent 6629d1e commit e21d3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/ref/models/querysets.txt
Expand Up @@ -386,7 +386,7 @@ A couple of subtleties that are worth mentioning:
For example:: For example::


>>> Entry.objects.values() >>> Entry.objects.values()
[{'blog_id: 1, 'headline': u'First Entry', ...}, ...] [{'blog_id': 1, 'headline': u'First Entry', ...}, ...]


>>> Entry.objects.values('blog') >>> Entry.objects.values('blog')
[{'blog': 1}, ...] [{'blog': 1}, ...]
Expand Down

0 comments on commit e21d3af

Please sign in to comment.