summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2010-10-21 06:01:02 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2010-10-21 06:01:02 +0000
commit7f84dac3c7cdbbd073a6b8cdb07033dd4a53608e (patch)
treeec2e843cc9b06649b4d7906d1fee3d32fa86f887 /docs
parent58af951c30670ea19bd2e7795daffd8f14383f71 (diff)
Fixed #14519 -- corrected a type in the tutorial, thanks buriy for the report and fix.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14308 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial04.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt
index aac8b30cd1..95d1945097 100644
--- a/docs/intro/tutorial04.txt
+++ b/docs/intro/tutorial04.txt
@@ -249,7 +249,7 @@ Change it like so::
DetailView.as_view(
models=Poll,
template_name='polls/results.html'),
- 'poll_results'),
+ name='poll_results'),
(r'^(?P<poll_id>\d+)/vote/$', 'polls.views.vote'),
)