summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndrey Otto <30920379+OttoAndrey@users.noreply.github.com>2022-02-21 12:13:36 +0700
committerGitHub <noreply@github.com>2022-02-21 06:13:36 +0100
commitf70a875cc05c46b3bfcc1637356081f0c5782bea (patch)
treed3e551590eb5f81fec12e986b5dcbe874ff125c4 /docs
parentfac3dd7f390d372736e05974cc5c3ef1a3768fbb (diff)
Fixed #33530 -- Fixed typo in docs/ref/templates/builtins.txt.
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 6f324e2b3b..d566f010b0 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".