Opened 14 years ago

Closed 14 years ago

#12345 closed (fixed)

incorrect invoking in the example of Multi-table inheritance section

Reported by: anonymous Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords: typo
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Refs http://code.djangoproject.com/browser/django/trunk/docs/topics/db/models.txt?rev=10818#L926 .

p = Place.objects.filter(name="Bob's Cafe")
# If Bob's Cafe is a Restaurant object, this will give the child class:
>>> p.restaurant
<Restaurant: ...>

p is a QuerySet here and p.restaurant has no sense. following maybe better.

p = Place.objects.get(name="Bob's Cafe")

Attachments (1)

12345.diff (540 bytes ) - added by Tim Graham 14 years ago.
typo

Download all attachments as: .zip

Change History (3)

by Tim Graham, 14 years ago

Attachment: 12345.diff added

typo

comment:1 by Tim Graham, 14 years ago

Has patch: set
Keywords: typo added
Triage Stage: UnreviewedReady for checkin

comment:2 by Adrian Holovaty, 14 years ago

Resolution: fixed
Status: newclosed

(In [12188]) Fixed #12345 -- Fixed bug in db/models.txt.

Note: See TracTickets for help on using tickets.
Back to Top