From 6950f4f8ddc1388576e8b0bf23f8ef952c3bf0e3 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 1 Aug 2005 21:37:16 +0000 Subject: [PATCH] Fixed small typo in docs/overview.txt -- thanks, Trent git-svn-id: http://code.djangoproject.com/svn/django/trunk@381 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/overview.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview.txt b/docs/overview.txt index f41ed6e24b4..6917ef8a1d4 100644 --- a/docs/overview.txt +++ b/docs/overview.txt @@ -169,7 +169,7 @@ Reporter/Article example, here's what that might look like:: urlpatterns = patterns('', (r'^/articles/(?P\d{4})/$', 'myproject.news.views.articles.year_archive'), (r'^/articles/(?P\d{4})/(?P\d{2})/$', 'myproject.news.views.articles.month_archive'), - (r'^/articles/(?P\d{4})/(?P\d{2})/(?P\d+)/$', 'myproject.news.views.articles.article_detail'), + (r'^/articles/(?P\d{4})/(?P\d{2})/(?P\d+)/$', 'myproject.news.views.articles.article_detail'), ) The code above maps URLs, as regular expressions, to the location of Python