summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2007-09-20 02:02:21 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2007-09-20 02:02:21 +0000
commit6306400102cbb99b4b9434712574c8eb06e6ad23 (patch)
tree1c94ef4cbd2138fa6f1d087777438580099b21a2 /docs
parent4704412bb345ce3f83e6694f97ab8eaa061fef31 (diff)
Fixed #5544 -- Fixed another typo in documentation, introduced as a result of the changes in [6333] and [6365]. Thanks for the report, xiaolianyi@gmail.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6384 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/sessions.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sessions.txt b/docs/sessions.txt
index 7fc607bb13..96e8d36854 100644
--- a/docs/sessions.txt
+++ b/docs/sessions.txt
@@ -205,7 +205,7 @@ An API is available to manipulate session data outside of a view::
datetime.datetime(2005, 8, 20, 13, 35, 0)
>>> s.save()
-If you're using the ``django.contrib.sessions.engine.db`` backend, each
+If you're using the ``django.contrib.sessions.backends.db`` backend, each
session is just a normal Django model. The ``Session`` model is defined in
``django/contrib/sessions/models.py``. Because it's a normal model, you can
access sessions using the normal Django database API::