From 59b2439e7e7aeba44ab52082f9014898104a0141 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Mon, 27 Feb 2012 14:40:27 +0000 Subject: [PATCH] Fixed ReST typo in CSRF docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17593 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/csrf.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/csrf.txt b/docs/ref/contrib/csrf.txt index 006d63b7a3..fa1ae7a6ce 100644 --- a/docs/ref/contrib/csrf.txt +++ b/docs/ref/contrib/csrf.txt @@ -366,7 +366,7 @@ all the views that need it, enable the middleware and use CsrfViewMiddleware.process_view not used ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -There are cases when ``CsrfViewMiddleware.process_view``` may not have run +There are cases when ``CsrfViewMiddleware.process_view`` may not have run before your view is run - 404 and 500 handlers, for example - but you still need the CSRF token in a form.