diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt
index 529b470..1ca46cc 100644
a
|
b
|
Now, let's create a Django view that handles the submitted data and does
|
50 | 50 | something with it. Remember, in :ref:`Tutorial 3 <intro-tutorial03>`, we created |
51 | 51 | a URLconf for the polls application that includes this line:: |
52 | 52 | |
53 | | (r'^(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'), |
| 53 | (r'^(?P<poll_id>\d+)/vote/$', 'vote'), |
54 | 54 | |
55 | 55 | So let's create a ``vote()`` function in ``mysite/polls/views.py``:: |
56 | 56 | |