diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt index 529b4707d07..5c2e1e8ec1f 100644 --- a/docs/intro/tutorial04.txt +++ b/docs/intro/tutorial04.txt @@ -47,10 +47,10 @@ A quick rundown: through its loop Now, let's create a Django view that handles the submitted data and does -something with it. Remember, in :ref:`Tutorial 3 `, we created -a URLconf for the polls application that includes this line:: +something with it. Remember, in :ref:`Tutorial 3 `, we +created a URLconf for the polls application that includes this line:: - (r'^(?P\d+)/vote/$', 'mysite.polls.views.vote'), + (r'^(?P\d+)/vote/$', 'vote'), So let's create a ``vote()`` function in ``mysite/polls/views.py``::