summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-05-22 00:13:08 +0000
committerTimo Graham <timograham@gmail.com>2011-05-22 00:13:08 +0000
commit2c3d3400ef5abfd6be15276d4b5d584319ccecc3 (patch)
tree943f23b969a680d0d6db4a3b85699a14eef1b9cb /docs
parent08f5ac3d51c2e4b9ddf28a1bae640c1970decd8c (diff)
[1.3.X] Fixed #16051 - Changed a "file" reference in the tutorial to be an actual file rather than a module; thanks felix.morency for the suggestion.
Backport of r16258 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16259 bcc190cf-cafb-0310-a4f2-bffc1f526a37
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 bb851b7820..41a62a72d7 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -523,7 +523,7 @@ Here's what happens if a user goes to "/polls/34/" in this system:
Now that we've decoupled that, we need to decouple the ``polls.urls``
URLconf by removing the leading "polls/" from each line, and removing the
-lines registering the admin site. Your ``polls.urls`` file should now look like
+lines registering the admin site. Your ``polls/urls.py`` file should now look like
this::
from django.conf.urls.defaults import *