summaryrefslogtreecommitdiff
path: root/docs/authentication.txt
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2006-05-15 11:33:17 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2006-05-15 11:33:17 +0000
commit34b798cb42263ca57a1e773441fa1f09716d50bc (patch)
treedcde3ba45b2e8935e579b29613e2d37c09ef54b4 /docs/authentication.txt
parentd16215f6df78896587ba5e7b82040d772d72230a (diff)
Fixed #1815: More documentation proof-reading from nico@teknico.net.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2908 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/authentication.txt')
-rw-r--r--docs/authentication.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 0b7094188d..524bd0b53c 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -215,7 +215,7 @@ Anonymous users
---------------
``django.contrib.auth.models.AnonymousUser`` is a class that implements
-the ``django.contirb.auth.models.User`` interface, with these differences:
+the ``django.contrib.auth.models.User`` interface, with these differences:
* ``id`` is always ``None``.
* ``is_anonymous()`` returns ``True`` instead of ``False``.
@@ -437,7 +437,7 @@ permissions are added to the ``auth_permission`` database table when you run
Note that if your model doesn't have ``class Admin`` set when you run
``syncdb``, the permissions won't be created. If you initialize your database
and add ``class Admin`` to models after the fact, you'll need to run
-``django-admin.py syncdb`` again. It will create any missing permissions for
+``manage.py syncdb`` again. It will create any missing permissions for
all of your installed apps.
Custom permissions
@@ -484,7 +484,7 @@ Methods
~~~~~~~
``Permission`` objects have the standard data-access methods like any other
-`Django model`_:
+`Django model`_.
Authentication data in templates
================================