summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2011-02-26 08:49:05 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2011-02-26 08:49:05 +0000
commitf5bbeb147bdf4047cc0ae011ca2426b3f4bef70c (patch)
treed1a9af305027d1324707fb2f8cdb448bcdd54def /docs
parent380906b94659930be656e929ff417bd474f6e81a (diff)
Fixed #15509 -- corrected a typo in the cache docs. Thanks Paul.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15654 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/cache.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index e6f0ca1f4e..5acd53eeb8 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -448,7 +448,7 @@ The cache middleware caches every page that doesn't have GET or POST
parameters. Optionally, if the :setting:`CACHE_MIDDLEWARE_ANONYMOUS_ONLY`
setting is ``True``, only anonymous requests (i.e., not those made by a
logged-in user) will be cached. This is a simple and effective way of disabling
-caching for any user-specific pages (include Django's admin interface). Note
+caching for any user-specific pages (including Django's admin interface). Note
that if you use :setting:`CACHE_MIDDLEWARE_ANONYMOUS_ONLY`, you should make
sure you've activated ``AuthenticationMiddleware``. The cache middleware
expects that a HEAD request is answered with the same response headers as