From 8d90489fe0049049f1f13c737ac51a24abf1efc3 Mon Sep 17 00:00:00 2001 From: Jon Walsh Date: Thu, 19 Mar 2015 14:09:34 +0700 Subject: [PATCH] Fixed typo in escape_filter() docstring. --- django/template/defaultfilters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/template/defaultfilters.py b/django/template/defaultfilters.py index fe71459358..a3a9004494 100644 --- a/django/template/defaultfilters.py +++ b/django/template/defaultfilters.py @@ -439,7 +439,7 @@ def cut(value, arg): @stringfilter def escape_filter(value): """ - Marks the value as a string that should not be auto-escaped. + Marks the value as a string that should be auto-escaped. """ return mark_for_escaping(value)