aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorTom Christie2013-05-07 17:14:25 +0100
committerTom Christie2013-05-07 17:14:25 +0100
commita8e090df04c9574aee9990f82715841aa797e220 (patch)
treeb5aee9be4e6c7f04e41e826cf38c580df24c3cc2 /docs/tutorial/quickstart.md
parentd7c08222f14389b4d61e5ca9032c49b8b917d251 (diff)
downloaddjango-rest-framework-a8e090df04c9574aee9990f82715841aa797e220.tar.bz2
Remove accidental conflict diff
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index 627724c7..52fe3acf 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -76,11 +76,7 @@ Because we're using viewsets instead of views, we can automatically generate the
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.
-<<<<<<< HEAD
-Note that we're also 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 browseable API.
-=======
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.
->>>>>>> master
## Settings