Django

Code

Changeset 5120

Show
Ignore:
Timestamp:
04/28/07 09:23:41 (2 years ago)
Author:
mtredinnick
Message:

Fixed #4175 -- Fixed a couple of ReST markup errors. Thanks, Matt McClanahan?.

Files:

Legend:

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

    r5064 r5120  
    113113    b4.save()  # Overrides the previous blog with ID=3! 
    114114 
    115 See _`How Django knows to UPDATE vs. INSERT`, below, for the reason this 
     115See `How Django knows to UPDATE vs. INSERT`_, below, for the reason this 
    116116happens. 
    117117 
     
    715715something *other than* a ``QuerySet``. 
    716716 
    717 These methods do not use a cache (see _`Caching and QuerySets` below). Rather, 
     717These methods do not use a cache (see `Caching and QuerySets`_ below). Rather, 
    718718they query the database each time they're called. 
    719719 
     
    907907~~~~~ 
    908908 
    909 Exact match. If the value provided for comparison is ``None``, it will  
    910 be interpreted as an SQL ``NULL`` (See isnull_ for more details).   
     909Exact match. If the value provided for comparison is ``None``, it will 
     910be interpreted as an SQL ``NULL`` (See isnull_ for more details). 
    911911 
    912912Examples::