1
0
mirror of https://github.com/django/django.git synced 2025-01-26 10:09:42 +00:00

Added a missing space to the description of the cut filter.

This commit is contained in:
Florian Apolloner 2012-08-04 23:58:31 +02:00
parent 5f9b2be559
commit 62ae711cec

View File

@ -1184,7 +1184,7 @@ Removes all values of arg from the given string.
For example::
{{ value|cut:" "}}
{{ value|cut:" " }}
If ``value`` is ``"String with spaces"``, the output will be
``"Stringwithspaces"``.