aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/authentication.md
diff options
context:
space:
mode:
authorJames Rutherford2013-07-29 10:16:51 +0100
committerJames Rutherford2013-07-29 10:16:51 +0100
commit195b1af7ba34b833fc17f5693d7fbd9c8e7cce78 (patch)
tree7df888722d93d9c527c280c488e9c6f371fa307a /docs/api-guide/authentication.md
parent1a4ff1567ea4231cde9a2f23725550a754f3f54c (diff)
downloaddjango-rest-framework-195b1af7ba34b833fc17f5693d7fbd9c8e7cce78.tar.bz2
Minor typo fix
Diffstat (limited to 'docs/api-guide/authentication.md')
-rwxr-xr-xdocs/api-guide/authentication.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md
index fd6bfb56..b1ab4622 100755
--- a/docs/api-guide/authentication.md
+++ b/docs/api-guide/authentication.md
@@ -203,7 +203,7 @@ You can do so by inserting a `needed_by` attribute in your user migration:
For more details, see the [south documentation on dependencies][south-dependencies].
-Also not that if you're using a `post_save` signal to create tokens, then the first time you create the database tables, you'll need to ensure any migrations are run prior to creating any superusers. For example:
+Also note that if you're using a `post_save` signal to create tokens, then the first time you create the database tables, you'll need to ensure any migrations are run prior to creating any superusers. For example:
python manage.py syncdb --noinput # Won't create a superuser just yet, due to `--noinput`.
python manage.py migrate