summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-27 13:11:30 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-27 13:11:30 +0000
commit13db259fe0e4cf6fde35b45369f192db7257c423 (patch)
tree66fe8b2f913112c6ceb6f36b0ee61dafcf7b7b9e
parent5785763833130953aaf261baacc90825dec08d98 (diff)
Fixed #4307 -- Clarified that ROOT_URLCONF is in settings.py and fixed a small
typo. Pointed out by rogerpack2005@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5365 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/tutorial03.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt
index 8bb63791aa..41febe021d 100644
--- a/docs/tutorial03.txt
+++ b/docs/tutorial03.txt
@@ -60,9 +60,10 @@ arguments from the dictionary (an optional third item in the tuple).
For more on ``HTTPRequest`` objects, see the `request and response documentation`_.
For more details on URLconfs, see the `URLconf documentation`_.
-When you ran ``python manage.py startproject mysite`` at the beginning of
+When you ran ``python django-admin.py startproject mysite`` at the beginning of
Tutorial 1, it created a default URLconf in ``mysite/urls.py``. It also
-automatically set your ``ROOT_URLCONF`` setting to point at that file::
+automatically set your ``ROOT_URLCONF`` setting (in ``settings.py``) to point
+at that file::
ROOT_URLCONF = 'mysite.urls'