summaryrefslogtreecommitdiff
path: root/docs/overview.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-01 21:35:55 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-01 21:35:55 +0000
commit6656806f42f6c97264a65b2bbc9ba2cfb746bca3 (patch)
tree6d220db6fb82ed976bb8c30ae8bdb79b35445bd9 /docs/overview.txt
parenta9331211c8566480e4367ee58770f62d0ac7366b (diff)
Fixed duplicate code bug in docs/overview.txt -- thanks, James Kew
git-svn-id: http://code.djangoproject.com/svn/django/trunk@380 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/overview.txt')
-rw-r--r--docs/overview.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/overview.txt b/docs/overview.txt
index 19d48ba059..f41ed6e24b 100644
--- a/docs/overview.txt
+++ b/docs/overview.txt
@@ -169,7 +169,6 @@ Reporter/Article example, here's what that might look like::
urlpatterns = patterns('',
(r'^/articles/(?P<year>\d{4})/$', 'myproject.news.views.articles.year_archive'),
(r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'myproject.news.views.articles.month_archive'),
- (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'myproject.news.views.articles.month_archive'),
(r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'myproject.news.views.articles.article_detail'),
)