[1.8.x] Fixed typo in escape_filter() docstring.

Backport of 8d90489fe0 from master
This commit is contained in:
Jon Walsh 2015-03-19 14:09:34 +07:00 committed by Tim Graham
parent e3c9412d86
commit 2b267a70a1
1 changed files with 1 additions and 1 deletions

View File

@ -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)