aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2014-02-28 16:43:17 +0000
committerTom Christie2014-02-28 16:43:17 +0000
commit62786a7ad64918022f11f1b95ce84adb8d798830 (patch)
treeeaf4c572e7251cedd0cdb397955d38acaac7fe1a
parent22f225175ff29e77bec95129a8e812c791777f10 (diff)
parentabb240648c971af83c17cb6f77b274533d40c7f3 (diff)
downloaddjango-rest-framework-62786a7ad64918022f11f1b95ce84adb8d798830.tar.bz2
Merge pull request #1444 from DanSears/master
clarified which urls.py to edit
-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: