summaryrefslogtreecommitdiff
path: root/docs/tutorial04.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorial04.txt')
-rw-r--r--docs/tutorial04.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/tutorial04.txt b/docs/tutorial04.txt
index 67974327a3..8ef4a03c6d 100644
--- a/docs/tutorial04.txt
+++ b/docs/tutorial04.txt
@@ -218,8 +218,9 @@ from ``polls/views.py``. We don't need them anymore -- they have been replaced
by generic views.
The ``vote()`` view is still required. However, it must be modified to match
-the new templates and context variables. Change the template call from ``polls/detail``
-to ``polls/polls_detail``, and pass ``object`` in the context instead of ``poll``.
+the new templates and context variables. Change the template call from
+``polls/detail.html`` to ``polls/poll_detail.html``, and pass ``object`` in the
+context instead of ``poll``.
Run the server, and use your new polling app based on generic views.