From aea34087ef45b49945159101b77a161c4aa91ec7 Mon Sep 17 00:00:00 2001
From: James Bennett <ubernostrum@gmail.com>
Date: Wed, 3 Sep 2008 04:43:57 +0000
Subject: [PATCH] Fixed #8811: Corrected URL example in tutorial part 2

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8906 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 548898e17b..8ce9161854 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -50,7 +50,7 @@ activate the admin site for your installation, do these three things:
 
           urlpatterns = patterns('',
               # Example:
-              # (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
+              # (r'^mysite/', include('mysite.foo.urls')),
 
               # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
               # to INSTALLED_APPS to enable admin documentation: