From 5c55cc83a78e1ae9604e3c90dee8d434059025e2 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 19 Sep 2007 20:54:46 +0000 Subject: [PATCH] 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 --- docs/authentication.txt | 6 +++--- 1 file 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