diff options
| author | Tom Christie | 2012-10-08 15:46:52 +0100 | 
|---|---|---|
| committer | Tom Christie | 2012-10-08 15:46:52 +0100 | 
| commit | b581ffe323d88b6740abfed0fd552cc436fd2dcc (patch) | |
| tree | 9951f679a9ae2ba720066d8d7651d3dd9b4e1fdc /docs/tutorial/2-requests-and-responses.md | |
| parent | 9ade21c793fae70110925bb3bf1fae2fc54fe75e (diff) | |
| download | django-rest-framework-b581ffe323d88b6740abfed0fd552cc436fd2dcc.tar.bz2 | |
Docs tweaks
Diffstat (limited to 'docs/tutorial/2-requests-and-responses.md')
| -rw-r--r-- | docs/tutorial/2-requests-and-responses.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/tutorial/2-requests-and-responses.md b/docs/tutorial/2-requests-and-responses.md index 13feb254..7c8fc044 100644 --- a/docs/tutorial/2-requests-and-responses.md +++ b/docs/tutorial/2-requests-and-responses.md @@ -114,7 +114,7 @@ Now update the `urls.py` file slightly, to append a set of `format_suffix_patter      from django.conf.urls import patterns, url      from rest_framework.urlpatterns import format_suffix_patterns -    urlpatterns = patterns('blogpost.views', +    urlpatterns = patterns('blog.views',          url(r'^$', 'comment_root'),          url(r'^(?P<pk>[0-9]+)$', 'comment_instance')      ) | 
