Fixed #4303 -- Fixed typos in docs/db-api.txt. Thanks, Gary Wilson

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5253 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-05-15 19:35:53 +00:00
parent 72e824ad14
commit 6f44cffc77
1 changed files with 25 additions and 25 deletions

View File

@ -1765,8 +1765,8 @@ exist. For example::
When you provide a model to this shortcut function, the default manager When you provide a model to this shortcut function, the default manager
is used to execute the underlying ``get()`` query. If you don't want to is used to execute the underlying ``get()`` query. If you don't want to
use the default manager, or you want to search a list of related objects, use the default manager, or if you want to search a list of related objects,
you can provide ``get_object_or_404()`` with a manager object, instead. you can provide ``get_object_or_404()`` with a manager object instead.
For example:: For example::
# Get the author of blog instance `e` with a name of 'Fred' # Get the author of blog instance `e` with a name of 'Fred'
@ -1779,8 +1779,8 @@ For example::
get_list_or_404() get_list_or_404()
----------------- -----------------
``get_list_or_404`` behaves the same was as ``get_object_or_404()`` ``get_list_or_404`` behaves the same way as ``get_object_or_404()``
-- except that it uses using ``filter()`` instead of ``get()``. It raises -- except that it uses ``filter()`` instead of ``get()``. It raises
``Http404`` if the list is empty. ``Http404`` if the list is empty.
Falling back to raw SQL Falling back to raw SQL