aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorTom Christie2014-12-02 08:29:22 +0000
committerTom Christie2014-12-02 08:29:22 +0000
commitd847e336c57c32a876093a81269ecb4b8a56bb85 (patch)
tree29a4806233a7a16d3f4948b408ad59a2b10d8756 /docs/tutorial/quickstart.md
parentd1fe61ce94af1e942f8d1026fb84b1909c230779 (diff)
parent0a91999d6a907dfa5cd6e004e8bf320c395257f0 (diff)
downloaddjango-rest-framework-d847e336c57c32a876093a81269ecb4b8a56bb85.tar.bz2
Merge pull request #2161 from NextHub/master
Move models to respective test modules
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index 1c398c1f..3e1ce0a9 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -100,7 +100,7 @@ Okay, now let's wire up the API URLs. On to `tutorial/urls.py`...
router.register(r'groups', views.GroupViewSet)
# Wire up our API using automatic URL routing.
- # Additionally, we include login URLs for the browseable API.
+ # Additionally, we include login URLs for the browsable API.
urlpatterns = [
url(r'^', include(router.urls)),
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))