From 54457043ad1ec518f6ef83b3b5484f44528b1156 Mon Sep 17 00:00:00 2001
From: Malcolm Tredinnick <malcolm.tredinnick@gmail.com>
Date: Mon, 17 Dec 2007 07:01:17 +0000
Subject: [PATCH] Fixed #6174 -- Documentation fix for [6912]. Pointed out by
 Russell Cloran.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6924 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 docs/authentication.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/authentication.txt b/docs/authentication.txt
index 8f305ba4d1..5134e90267 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -247,8 +247,8 @@ Anonymous users
 the ``django.contrib.auth.models.User`` interface, with these differences:
 
     * ``id`` is always ``None``.
-    * ``is_staff`` and ``is_superuser`` are always False.
-    * ``is_active`` is always True.
+    * ``is_staff`` and ``is_superuser`` are always ``False``.
+    * ``is_active`` is always ``False``.
     * ``groups`` and ``user_permissions`` are always empty.
     * ``is_anonymous()`` returns ``True`` instead of ``False``.
     * ``is_authenticated()`` returns ``False`` instead of ``True``.