From 05a4439581f1c2deb485b3f6796ff26045f4c567 Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Tue, 26 Aug 2008 17:44:04 +0000 Subject: [PATCH] Fixed #8560 -- Corrected a typo in a comment of docs/intro/tutorial02.txt to be consistent with the change in [8432]. Thanks ramiro for catching this. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8585 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/intro/tutorial02.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index 904058f73a..5babbf0e60 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -55,7 +55,7 @@ activate the admin site for your installation, do these three things: # Uncomment the next line to enable admin documentation: # (r'^admin/doc/', include('django.contrib.admindocs.urls')), - # Uncomment the next line for to enable the admin: + # Uncomment the next line to enable the admin: **(r'^admin/(.*)', admin.site.root),** )