From 6afa40ea00b20aa02d45d2bafee43fc56cd0df7c Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 30 Sep 2006 01:22:30 +0000 Subject: [PATCH] Fixed typo in r3885. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3886 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/authentication.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ---------------------