From fd95dc9e2719e5950f5339fbd48ea0819a6d8774 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 18 Jul 2013 07:58:51 -0400 Subject: [PATCH] Fixed #20763 -- Typo in tutorial 3. Thanks crichard@ for the report. --- docs/intro/tutorial03.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index 91409848cf2..f0c39e2c93a 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