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.