Django

Code

Changeset 381

Show
Ignore:
Timestamp:
08/01/05 16:37:16 (3 years ago)
Author:
adrian
Message:

Fixed small typo in docs/overview.txt -- thanks, Trent

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/overview.txt

    r380 r381  
    170170        (r'^/articles/(?P<year>\d{4})/$', 'myproject.news.views.articles.year_archive'), 
    171171        (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'myproject.news.views.articles.month_archive'), 
    172         (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'myproject.news.views.articles.article_detail'), 
     172        (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<article_id>\d+)/$', 'myproject.news.views.articles.article_detail'), 
    173173    ) 
    174174