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

This commit is contained in:
Andrey Otto 2022-02-21 12:13:36 +07:00 committed by GitHub
parent fac3dd7f39
commit f70a875cc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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".