diff options
| author | Andrew Badr <andrewbadr.etc+github@gmail.com> | 2012-09-24 17:14:11 -0700 |
|---|---|---|
| committer | Andrew Badr <andrewbadr.etc+github@gmail.com> | 2012-09-24 17:14:11 -0700 |
| commit | 29cd3d6c01d7afbcf5141430b2dd93daede22ade (patch) | |
| tree | 7af641bdb9aefa52690a8b24ba5557ffa9975ef4 | |
| parent | 515fd6a5de2f1bf817fac9ced07d0485d594b510 (diff) | |
Fix docs for context_processors.auth
Copy said it created three context variables, but only lists two. ("messages" was removed.)
| -rw-r--r-- | docs/ref/templates/api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt index f29d2acc12..db57d2de96 100644 --- a/docs/ref/templates/api.txt +++ b/docs/ref/templates/api.txt @@ -433,7 +433,7 @@ django.contrib.auth.context_processors.auth ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If :setting:`TEMPLATE_CONTEXT_PROCESSORS` contains this processor, every -``RequestContext`` will contain these three variables: +``RequestContext`` will contain these variables: * ``user`` -- An ``auth.User`` instance representing the currently logged-in user (or an ``AnonymousUser`` instance, if the client isn't |
