diff options
| author | Sylvain Bellemare | 2014-05-06 15:06:38 +0200 | 
|---|---|---|
| committer | Sylvain Bellemare | 2014-05-06 15:08:53 +0200 | 
| commit | beb7253a961870a37833b7df6d1dfd3e8c1db778 (patch) | |
| tree | d9c528c62696c565e15a8589a056c809db002e36 /docs | |
| parent | 9dc5e15e5afaf806378bb52ea2134f8dec2af386 (diff) | |
| download | django-rest-framework-beb7253a961870a37833b7df6d1dfd3e8c1db778.tar.bz2 | |
Removed unnecessary "that"
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/tutorial/6-viewsets-and-routers.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/tutorial/6-viewsets-and-routers.md b/docs/tutorial/6-viewsets-and-routers.md index 0a7c3363..dad71601 100644 --- a/docs/tutorial/6-viewsets-and-routers.md +++ b/docs/tutorial/6-viewsets-and-routers.md @@ -85,7 +85,7 @@ In the `urls.py` file we bind our `ViewSet` classes into a set of concrete views  Notice how we're creating multiple views from each `ViewSet` class, by binding the http methods to the required action for each view. -Now that we've bound our resources into concrete views, that we can register the views with the URL conf as usual. +Now that we've bound our resources into concrete views, we can register the views with the URL conf as usual.      urlpatterns = format_suffix_patterns(patterns('snippets.views',          url(r'^$', 'api_root'), | 
