summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-09-03 06:16:47 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-09-03 06:16:47 +0000
commit8e3507cd3ee7d77ce279420b8e9a627da7a62966 (patch)
tree8dc720d1654497dce13422c876d4c96161974e75 /docs
parent41576fea7180e681a3006195d40a364bc8f78505 (diff)
Fixed #4923 -- Fixed error in docs/authentication.txt. Thanks, djangotrac.20.skel@spamgourmet.org
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6037 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/authentication.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 7860b59d7d..131a8930b5 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -190,7 +190,7 @@ function that comes with Django::
>>> from django.contrib.auth.models import User
>>> user = User.objects.create_user('john', 'lennon@thebeatles.com', 'johnpassword')
- # At this point, user is a User object ready to be saved
+ # At this point, user is a User object that has already been saved
# to the database. You can continue to change its attributes
# if you want to change other fields.
>>> user.is_staff = True