From 73ea27ccb0ff4cacb3bc492496d9529aebed2970 Mon Sep 17 00:00:00 2001
From: Adrian Holovaty <adrian@holovaty.com>
Date: Tue, 19 Jul 2005 03:06:28 +0000
Subject: [PATCH] Fixed bug in [191]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@192 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 docs/overview.txt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/overview.txt b/docs/overview.txt
index d21ce88081..a7e0f1c14c 100644
--- a/docs/overview.txt
+++ b/docs/overview.txt
@@ -169,10 +169,10 @@ Reporter/Article example, here's what that might look like::
     from django.conf.urls.defaults import *
 
     urlpatterns = patterns('',
-        (r'^/articles/(?P\d<year>{4})/$', 'myproject.news.views.articles.year_archive'),
-        (r'^/articles/(?P\d<year>{4})/(?P\d<month>{2})/$', 'myproject.news.views.articles.month_archive'),
-        (r'^/articles/(?P\d<year>{4})/(?P\d<month>{2})/$', 'myproject.news.views.articles.month_archive'),
-        (r'^/articles/(?P\d<year>{4})/(?P\d<month>{2})/(?P<day>\d+)/$', 'myproject.news.views.articles.article_detail'),
+        (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'),
     )
 
 The code above maps URLs, as regular expressions, to the location of Python