summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-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 a664e9d2d2..8e02e067a1 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -2229,7 +2229,7 @@ Note that you can backslash-escape a format string if you want to use the
otherwise each is a format string that displays the hour and the month,
respectively::
- {% value|time:"H\h i\m" %}
+ {{ value|time:"H\h i\m" }}
This would display as "01h 23m".