summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2006-09-30 01:22:30 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2006-09-30 01:22:30 +0000
commit6afa40ea00b20aa02d45d2bafee43fc56cd0df7c (patch)
tree1d09040f7fffbec6ff19a823c0ba116ead781fa2
parentfa4bb1b0933ac5b1b266269d20f1a40808f822ab (diff)
Fixed typo in r3885.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3886 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/authentication.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index dc2e7c1475..2a61ec82b5 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -315,7 +315,7 @@ This example shows how you might use both ``authenticate()`` and ``login()``::
else:
# Return a 'disabled account' error message
else:
- # Return a 'invalid login' error message.
+ # Return an 'invalid login' error message.
How to log a user out
---------------------