diff options
| author | Tom Christie | 2013-01-10 14:00:10 -0800 |
|---|---|---|
| committer | Tom Christie | 2013-01-10 14:00:10 -0800 |
| commit | 7ae1111d02c4b4ffe525bc9a79c3b55f0b165bc9 (patch) | |
| tree | 374c02df58418f9db6d9d5c30552f9d2710625e2 /docs/tutorial/2-requests-and-responses.md | |
| parent | c4e33d8a75be59fdbc0f5f1b8ff04fdf5a43d35b (diff) | |
| parent | 12efd78fcf40ea8acf95259ffc5269bd9f360d2f (diff) | |
| download | django-rest-framework-7ae1111d02c4b4ffe525bc9a79c3b55f0b165bc9.tar.bz2 | |
Merge pull request #550 from Wackerbarth/tutorial
Revised Tutorial
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 08cf91cd..cdf6c13f 100644 --- a/docs/tutorial/2-requests-and-responses.md +++ b/docs/tutorial/2-requests-and-responses.md @@ -117,7 +117,7 @@ Now update the `urls.py` file slightly, to append a set of `format_suffix_patter urlpatterns = patterns('snippets.views', url(r'^snippets/$', 'snippet_list'), - url(r'^snippets/(?P<pk>[0-9]+)$', 'snippet_detail') + url(r'^snippets/(?P<pk>[0-9]+)$', 'snippet_detail'), ) urlpatterns = format_suffix_patterns(urlpatterns) |
