Skip to content

Commit

Permalink
Fixed #2176 -- Fixed typo in docs/db-api.txt. Thanks, simon@lieschke.net
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3141 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jun 18, 2006
1 parent c8f1d0a commit c256dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/db-api.txt
Expand Up @@ -731,7 +731,7 @@ The above example can be rewritten using ``get_or_create()`` like so::
defaults={'birthday': date(1940, 10, 9)})

Any keyword arguments passed to ``get_or_create()`` -- *except* an optional one
called ``default`` -- will be used in a ``get()`` call. If an object is found,
called ``defaults`` -- will be used in a ``get()`` call. If an object is found,
``get_or_create()`` returns a tuple of that object and ``False``. If an object
is *not* found, ``get_or_create()`` will instantiate and save a new object,
returning a tuple of the new object and ``True``. The new object will be
Expand Down

0 comments on commit c256dcd

Please sign in to comment.