Fixed #1156 -- Fixed typo in docs/url_dispatch.txt. Thanks, Brian Ray

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1813 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-02 18:22:43 +00:00
parent 49874d54a2
commit 2bd833d462
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ the following example is valid::
)
# In foo/urls/blog.py
urlpatterns = patterns('foo.views'
urlpatterns = patterns('foo.views',
(r'^$', 'blog.index'),
(r'^archive/$', 'blog.archive'),
)