summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-05-09 06:44:12 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-05-09 06:44:12 +0000
commit3057a59ec438348f9b9d33933b1443d149a3dd0d (patch)
tree6ece4aa5d49c9c7b30cadb8b1ca114d545f65e7f /docs/ref
parent1b16a03dba7704f4e5aaaa9344f8eda8c6ff6ae7 (diff)
Fixed #11933 -- Corrected the naming of the cached_db session backend. Thanks to mb0@mb0.org for the report and Gabriel Hurley for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13169 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/settings.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 23f1df7694..9830d4fe42 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -1226,7 +1226,7 @@ SESSION_ENGINE
.. versionadded:: 1.0
.. versionchanged:: 1.1
- The ``cache_db`` backend was added
+ The ``cached_db`` backend was added
Default: ``django.contrib.sessions.backends.db``
@@ -1235,7 +1235,7 @@ Controls where Django stores session data. Valid values are:
* ``'django.contrib.sessions.backends.db'``
* ``'django.contrib.sessions.backends.file'``
* ``'django.contrib.sessions.backends.cache'``
- * ``'django.contrib.sessions.backends.cache_db'``
+ * ``'django.contrib.sessions.backends.cached_db'``
See :ref:`topics-http-sessions`.