diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-05-26 04:05:02 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-05-26 04:05:02 +0000 |
| commit | be25b661b1b2179273b886ec45d4b449a9997a8d (patch) | |
| tree | 3662e2a26ce8d51c74ef5f28c844c4f0d5683000 /docs/cache.txt | |
| parent | 14392b032de5f3893b996b6b62c8f51462bd3971 (diff) | |
Fixed #1998 -- Changed double quotes to single quotes
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2980 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/cache.txt')
| -rw-r--r-- | docs/cache.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/cache.txt b/docs/cache.txt index 2c54f60456..2ef3d6503f 100644 --- a/docs/cache.txt +++ b/docs/cache.txt @@ -209,12 +209,12 @@ The per-site cache ================== Once the cache is set up, the simplest way to use caching is to cache your -entire site. Just add ``django.middleware.cache.CacheMiddleware`` to your +entire site. Just add ``'django.middleware.cache.CacheMiddleware'`` to your ``MIDDLEWARE_CLASSES`` setting, as in this example:: MIDDLEWARE_CLASSES = ( - "django.middleware.cache.CacheMiddleware", - "django.middleware.common.CommonMiddleware", + 'django.middleware.cache.CacheMiddleware', + 'django.middleware.common.CommonMiddleware', ) (The order of ``MIDDLEWARE_CLASSES`` matters. See "Order of MIDDLEWARE_CLASSES" |
