summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-09-19 20:54:46 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-09-19 20:54:46 +0000
commit5c55cc83a78e1ae9604e3c90dee8d434059025e2 (patch)
tree8d6025bea4e1ec1ac98a66d3b0d2f00e70a79c27
parentf857e37776569422043875b396dfc67acea80ce8 (diff)
Made some small edits to docs/authentication.txt changes from [6375]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6376 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/authentication.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 5ac86b9c6b..aee9c5224a 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -1090,12 +1090,12 @@ simply::
else:
return False
-This gives full permissions to user granted access in the above example. Notice
+This gives full permissions to the user granted access in the above example. Notice
that the backend auth functions all take the user object as an argument, and
-also accept the same arguments given to the associated ``User`` functions.
+they also accept the same arguments given to the associated ``User`` functions.
A full authorization implementation can be found in
``django/contrib/auth/backends.py`` _, which is the default backend and queries
-the ``auth_permission``-table most of the time.
+the ``auth_permission`` table most of the time.
.. _django/contrib/auth/backends.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/backends.py