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\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})/$', 'myproject.news.views.articles.month_archive'), (r'^/articles/(?P\d{4})/(?P\d{2})/(?P\d+)/$', 'myproject.news.views.articles.article_detail'), )