diff options
| author | sshquack | 2014-08-15 20:41:21 -0600 | 
|---|---|---|
| committer | sshquack | 2014-08-15 20:41:21 -0600 | 
| commit | 14867705e90b2b5f7e84dc7385d4ffba0c82b3e1 (patch) | |
| tree | 7d018be746d4abd607524739eee0763153962990 /docs/tutorial/4-authentication-and-permissions.md | |
| parent | 63d5634c660d21638114ccb35b0b756aae47b713 (diff) | |
| download | django-rest-framework-14867705e90b2b5f7e84dc7385d4ffba0c82b3e1.tar.bz2 | |
Specify file names using standard format
+ Explicitly specify module names in the standard format similar to all
the other tutorials
+ Remove the extra quote around module name
Diffstat (limited to 'docs/tutorial/4-authentication-and-permissions.md')
| -rw-r--r-- | docs/tutorial/4-authentication-and-permissions.md | 2 | 
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 491df160..bdbe00ab 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 the URLconf in our project-level urls.py file. +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: | 
