summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-10-21 19:10:10 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-10-21 19:10:10 +0000
commit0a4e4d5993f8d76d63c61c414b732b621b559556 (patch)
treea5c3c76a9e8d0bd137256f0d5db3e78a89ef3eea /docs
parentbab4fdc9fd1be47575f440816b4dfc422947d368 (diff)
Tweaked the caching docs to be consistent about the format for database caches
(and fixed a formatting error). git-svn-id: http://code.djangoproject.com/svn/django/trunk@6588 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/cache.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cache.txt b/docs/cache.txt
index 3b53260c91..d598915d1a 100644
--- a/docs/cache.txt
+++ b/docs/cache.txt
@@ -119,8 +119,8 @@ in your database that is in the proper format that Django's database-cache
system expects.
Once you've created that database table, set your ``CACHE_BACKEND`` setting to
-``"db://tablename/"``, where ``tablename`` is the name of the database table.
-In this example, the cache table's name is ``my_cache_table``:
+``"db://tablename"``, where ``tablename`` is the name of the database table.
+In this example, the cache table's name is ``my_cache_table``::
CACHE_BACKEND = 'db://my_cache_table'