aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial
diff options
context:
space:
mode:
authorXavier Ordoquy2014-03-03 11:41:07 +0100
committerXavier Ordoquy2014-03-03 11:41:07 +0100
commit3d7cb72e0a770595d8934b731f9c462b839f941a (patch)
tree809035a13a8de89d020ffefea38f779bfa4a7ed3 /docs/tutorial
parentb2f0f4fcf49d457aefc21960f62fcb8f2cf6770d (diff)
parentee9864e0dce10018261c131a76eb7c668703d76c (diff)
downloaddjango-rest-framework-3d7cb72e0a770595d8934b731f9c462b839f941a.tar.bz2
Merge remote-tracking branch 'reference/master' into feature/django_1_7
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/4-authentication-and-permissions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/4-authentication-and-permissions.md b/docs/tutorial/4-authentication-and-permissions.md
index bdc6b579..432371f3 100644
--- a/docs/tutorial/4-authentication-and-permissions.md
+++ b/docs/tutorial/4-authentication-and-permissions.md
@@ -129,7 +129,7 @@ Then, add the following property to **both** the `SnippetList` and `SnippetDetai
If you open a browser and navigate to the browsable API at the moment, you'll find that you're no longer able to create new code snippets. In order to do so we'd need to be able to login as a user.
-We can add a login view for use with the browsable API, by editing our URLconf once more.
+We can add a login view for use with the browsable API, by editing the URLconf in our project-level urls.py file.
Add the following import at the top of the file: