summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-07-17 14:16:17 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-07-17 14:16:17 +0000
commit6870edf2a0c60b72b4d0c3873e0efd2087d87579 (patch)
tree413de76b557f4f5fbb0fc7cdfd25767fd1fef8be /docs
parent4537cf3dd40a80f5ad410a62c5a052bf31e68a76 (diff)
Fixed #2356 -- Removed references to get_object() from docs/tutorial03.txt. Thanks, toddobryan
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3356 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorial03.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt
index 3a830eb76f..86b2e95ada 100644
--- a/docs/tutorial03.txt
+++ b/docs/tutorial03.txt
@@ -288,7 +288,7 @@ exception if a poll with the requested ID doesn't exist.
A shortcut: get_object_or_404()
-------------------------------
-It's a very common idiom to use ``get_object()`` and raise ``Http404`` if the
+It's a very common idiom to use ``get()`` and raise ``Http404`` if the
object doesn't exist. Django provides a shortcut. Here's the ``detail()`` view,
rewritten::
@@ -313,8 +313,8 @@ exist.
foremost design goals of Django is to maintain loose coupling.
There's also a ``get_list_or_404()`` function, which works just as
-``get_object_or_404()`` -- except using ``get_list()`` instead of
-``get_object()``. It raises ``Http404`` if the list is empty.
+``get_object_or_404()`` -- except using ``filter()`` instead of
+``get()``. It raises ``Http404`` if the list is empty.
Write a 404 (page not found) view
=================================