Opened 18 years ago
Closed 18 years ago
#4532 closed (fixed)
Simply 2 letter typo on select-related example
| Reported by: | 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.
Note:
See TracTickets
for help on using tickets.
(In [5466]) Fixed #4532 -- Trivial typo fix. Noticed by philliptemple@….