diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-02-02 05:13:39 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-02-02 05:13:39 +0000 |
| commit | 7a132e275441ba475a9bea988869fb8a8568d513 (patch) | |
| tree | 1ebbfc8561923941841ad1f11339f5f82c052c24 /docs/db-api.txt | |
| parent | 2549b3197033668d4ba40245e888e8f4eea80380 (diff) | |
Fixed #1285 -- Fixed bug in docs/db-api.txt. Thanks, adrianob@gmail.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2228 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/db-api.txt')
| -rw-r--r-- | docs/db-api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/db-api.txt b/docs/db-api.txt index f1dea93a14..8349576820 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -294,7 +294,7 @@ Given an instance of an object, related objects can be looked-up directly using convenience functions. For example, if ``p`` is a ``Poll`` instance, ``p.get_choice_list()`` will return a list of all associated choices. Astute readers will note that this is the same as -``choices.get_list(poll_id__exact=p.id)``, except clearer. +``choices.get_list(poll__id__exact=p.id)``, except clearer. Each type of relationship creates a set of methods on each object in the relationship. These methods are created in both directions, so objects that are |
