Fixed ReST bug in [678]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@679 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-09-23 22:51:08 +00:00
parent b7528320b6
commit eb3b1cfb81
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ A shortcut: get_object_or_404()
It's a very common idiom to use ``get_object()`` and raise ``Http404`` if the
object doesn't exist. Django provides a shortcut. Here's the ``detail()`` view,
rewritten:
rewritten::
from django.core.extensions import get_object_or_404
def detail(request, poll_id):