summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-09-07 22:55:31 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-09-07 22:55:31 +0000
commit571f4639a9a1476782c8c9725da3041a848c764c (patch)
treefb45a059665c220f6b4a00e9be7c03822f280998 /docs
parentacf2600a4c1b3d6cd4b1a4166ea62d784d246442 (diff)
Small wording improvements to cache.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8980 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/cache.txt14
1 files changed, 6 insertions, 8 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index bc0c407610..4f326276f8 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -186,10 +186,9 @@ Using a custom cache backend
.. versionadded:: 1.0
While Django includes support for a number of cache backends out-of-the-box,
-sometimes you will want to use a customised version or your own backend. To
-use an external cache backend with Django, use a Python import path as the
-scheme portion (the part before the initial colon) of the ``CACHE_BACKEND``
-URI, like so::
+sometimes you might want to use a customized cache backend. To use an external
+cache backend with Django, use a Python import path as the scheme portion (the
+part before the initial colon) of the ``CACHE_BACKEND`` URI, like so::
CACHE_BACKEND = 'path.to.backend://'
@@ -197,10 +196,9 @@ If you're building your own backend, you can use the standard cache backends
as reference implementations. You'll find the code in the
``django/core/cache/backends/`` directory of the Django source.
-Note: Without a really compelling reason, like a host that doesn't support the
-them, you should stick to the cache backends included with Django. They've
-been really well-tested and are quite easy to use.
-
+Note: Without a really compelling reason, such as a host that doesn't support
+the them, you should stick to the cache backends included with Django. They've
+been well-tested and are easy to use.
CACHE_BACKEND arguments
-----------------------