Opened 17 years ago

Closed 17 years ago

#4532 closed (fixed)

Simply 2 letter typo on select-related example

Reported by: philliptemple@… Owned by: Jacob
Component: Documentation Version: dev
Severity: Keywords: example typo
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

http://www.djangoproject.com/documentation/db-api/#select-related

sv = Book.objects.get(id=4) # No select_related() in this example.

should be:

b = Book.objects.get(id=4) # No select_related() in this example.

Change History (1)

comment:1 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: newclosed

(In [5466]) Fixed #4532 -- Trivial typo fix. Noticed by philliptemple@….

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