Browse Source

Fixed #33530 -- Fixed typo in docs/ref/templates/builtins.txt.

Andrey Otto 3 years ago
parent
commit
f70a875cc0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/ref/templates/builtins.txt

+ 1 - 1
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".