From 01b6e55f200d7b59da61ecb727a29baad2c803e6 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 5 Oct 2008 06:23:23 +0000 Subject: [PATCH] [1.0.X] Fixed #9257 -- Fixed a small mismatch in text in part 2 of the tutorial. Backport of r9134 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9138 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/intro/tutorial02.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index b8cc1a0125..1144167276 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -35,10 +35,10 @@ activate the admin site for your installation, do these three things: to :setting:`INSTALLED_APPS`, the database tables need to be updated. * Edit your ``mysite/urls.py`` file and uncomment the lines below the - "Uncomment this for admin:" comments. This file is a URLconf; we'll dig - into URLconfs in the next tutorial. For now, all you need to know is that - it maps URL roots to applications. In the end, you should have a - ``urls.py`` file that looks like this: + "Uncomment the next two lines..." comment. This file is a URLconf; + we'll dig into URLconfs in the next tutorial. For now, all you need to + know is that it maps URL roots to applications. In the end, you should + have a ``urls.py`` file that looks like this: .. parsed-literal::