summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-07-18 07:58:51 -0400
committerTim Graham <timograham@gmail.com>2013-07-18 08:05:06 -0400
commit3f97c33a9ffd0f5102583ac6988f79cb1b839a05 (patch)
tree044e774aba6932868ea532be1a64d9fb70671f8b /docs
parent2e068d4e5a730d42c103a2931b02e62e8dc5109a (diff)
[1.5.x] Fixed #20763 -- Typo in tutorial 3.
Thanks crichard@ for the report. Backport of fd95dc9e27 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial03.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index 87fac2c211..bdad8f4b4f 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -182,7 +182,7 @@ slightly different, because they take an argument::
def vote(request, poll_id):
return HttpResponse("You're voting on poll %s." % poll_id)
-Wire these news views into the ``polls.urls`` module by adding the following
+Wire these new views into the ``polls.urls`` module by adding the following
:func:`~django.conf.urls.url` calls::
from django.conf.urls import patterns, url