mirror of
https://github.com/django/django.git
synced 2025-09-27 04:29:17 +00:00
Fixed typo in escape_filter() docstring.
This commit is contained in:
parent
e40581870a
commit
8d90489fe0
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ def cut(value, arg):
|
||||||
@stringfilter
|
@stringfilter
|
||||||
def escape_filter(value):
|
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)
|
return mark_for_escaping(value)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue