diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2010-01-09 19:08:03 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2010-01-09 19:08:03 +0000 |
| commit | e21d3af940ffb4e1d542ec4b910e77fc81289687 (patch) | |
| tree | 3021e566abf03e0142754b720d495c1ef21aa673 /docs/ref/models | |
| parent | 6629d1e89bbeb606ac2feb92d6c5890f7dad3274 (diff) | |
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
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/querysets.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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}, ...] |
