summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-08-13 11:25:57 +0000
committerTimo Graham <timograham@gmail.com>2011-08-13 11:25:57 +0000
commitf3bf62230aa0de220f1c7832c427201fc6f5b63b (patch)
tree7c99af85d64d150eeec0b196a4462e7d8a684764 /docs
parente11c647d604168e565bf4802d5e95aa1ba339c76 (diff)
Fixed #16606 - Typo in docs/ref/contrib/csrf.txt; thanks selwin.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16612 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/csrf.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/csrf.txt b/docs/ref/contrib/csrf.txt
index 50e15d7f94..a932a0e481 100644
--- a/docs/ref/contrib/csrf.txt
+++ b/docs/ref/contrib/csrf.txt
@@ -31,7 +31,7 @@ To enable CSRF protection for your views, follow these steps:
1. Add the middleware
``'django.middleware.csrf.CsrfViewMiddleware'`` to your list of
middleware classes, :setting:`MIDDLEWARE_CLASSES`. (It should come
- and before any view middleware that assume that CSRF attacks have
+ before any view middleware that assume that CSRF attacks have
been dealt with.)
Alternatively, you can use the decorator