Django

Code

Changeset 5466

Show
Ignore:
Timestamp:
06/11/07 19:31:55 (1 year ago)
Author:
mtredinnick
Message:

Fixed #4532 -- Trivial typo fix. Noticed by philliptemple@yahoo.co.uk.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/db-api.txt

    r5458 r5466  
    599599    c = p.hometown       # Doesn't hit the database. 
    600600 
    601     sv = Book.objects.get(id=4) # No select_related() in this example. 
     601    b = Book.objects.get(id=4) # No select_related() in this example. 
    602602    p = b.author         # Hits the database. 
    603603    c = p.hometown       # Hits the database.