Explorar el Código

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

Florian Apolloner hace 12 años
padre
commit
62ae711cec
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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"``.