From a54f435ba59d9685c553da52ee81a67432155663 Mon Sep 17 00:00:00 2001 From: Kenneth Schnall Date: Thu, 7 Jul 2016 15:12:04 -0400 Subject: [PATCH] Update quickstart.md --- docs/tutorial/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index 0c9ddf8f2..96fed2767 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -104,7 +104,7 @@ Okay, now let's wire up the API URLs. On to `tutorial/urls.py`... Because we're using viewsets instead of views, we can automatically generate the URL conf for our API, by simply registering the viewsets with a router class. -Again, if we need more control over the API URLs we can simply drop down to using regular class based views, and writing the URL conf explicitly. +Again, if we need more control over the API URLs we can simply drop down to using regular class-based views, and writing the URL conf explicitly. Finally, we're including default login and logout views for use with the browsable API. That's optional, but useful if your API requires authentication and you want to use the browsable API.