Browse Source

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

Florian Apolloner 12 years ago
parent
commit
62ae711cec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/ref/templates/builtins.txt

+ 1 - 1
docs/ref/templates/builtins.txt

@@ -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"``.