From 62ae711cecc823f0499cbddac3465c256dee106a Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Sat, 4 Aug 2012 23:58:31 +0200 Subject: [PATCH] Added a missing space to the description of the `cut` filter. --- docs/ref/templates/builtins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 500a47c6f1..072eebf69f 100644 --- a/docs/ref/templates/builtins.txt +++ b/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"``.