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