diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2008-11-02 04:23:28 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2008-11-02 04:23:28 +0000 |
| commit | f1eb098d96bd43de03e94163449d49d598f953e1 (patch) | |
| tree | 95bb21a8f38eb1e4d657146dce4f0d0ee14d620b | |
| parent | 6c069d2a71e19955b34a9c5aecc4d2075a5d430a (diff) | |
[1.0.X] Fixed #9495 -- Corrected typo in urls doc. Thanks seemant.
[9328] from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9329 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/topics/http/urls.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index dcb434bf39..dcbe18ab04 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -554,7 +554,7 @@ give a name to a URL pattern in order to distinguish it from other patterns using the same view and parameters. Then, you can use this name in reverse URL matching. -Here's the above example, rewritten to used named URL patterns:: +Here's the above example, rewritten to use named URL patterns:: urlpatterns = patterns('', url(r'/archive/(\d{4})/$', archive, name="full-archive"), |
