summaryrefslogtreecommitdiff
path: root/docs/csrf.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-05-26 04:05:02 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-05-26 04:05:02 +0000
commitbe25b661b1b2179273b886ec45d4b449a9997a8d (patch)
tree3662e2a26ce8d51c74ef5f28c844c4f0d5683000 /docs/csrf.txt
parent14392b032de5f3893b996b6b62c8f51462bd3971 (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/csrf.txt')
-rw-r--r--docs/csrf.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/csrf.txt b/docs/csrf.txt
index 4ea09552fc..218b43a61a 100644
--- a/docs/csrf.txt
+++ b/docs/csrf.txt
@@ -17,7 +17,7 @@ middleware into your list of installed middleware.
How to use it
=============
-Add the middleware ``"django.contrib.csrf.middleware.CsrfMiddleware"`` to
+Add the middleware ``'django.contrib.csrf.middleware.CsrfMiddleware'`` to
your list of middleware classes, ``MIDDLEWARE_CLASSES``. It needs to process
the response after the SessionMiddleware, so must come before it in the
list. It also must process the response before things like compression