summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2012-08-04 23:58:31 +0200
committerFlorian Apolloner <florian@apolloner.eu>2012-08-04 23:58:31 +0200
commit62ae711cecc823f0499cbddac3465c256dee106a (patch)
tree970456927f342a9e784cf03b570e3733b4f7f8dd /docs/ref
parent5f9b2be559f1ce9206cdb5129d3d68148814e619 (diff)
Added a missing space to the description of the `cut` filter.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/templates/builtins.txt2
1 files changed, 1 insertions, 1 deletions
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"``.