Django

Code

Changeset 3141

Show
Ignore:
Timestamp:
06/18/06 12:33:02 (2 years ago)
Author:
adrian
Message:

Fixed #2176 -- Fixed typo in docs/db-api.txt. Thanks, simon@lieschke.net

Files:

Legend:

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

    r3125 r3141  
    732732 
    733733Any keyword arguments passed to ``get_or_create()`` -- *except* an optional one 
    734 called ``default`` -- will be used in a ``get()`` call. If an object is found, 
     734called ``defaults`` -- will be used in a ``get()`` call. If an object is found, 
    735735``get_or_create()`` returns a tuple of that object and ``False``. If an object 
    736736is *not* found, ``get_or_create()`` will instantiate and save a new object,