1
0
mirror of https://github.com/django/django.git synced 2025-07-07 19:29:12 +00:00

[4.0.x] Fixed #33530 -- Fixed typo in docs/ref/templates/builtins.txt.

Backport of f70a875cc05c46b3bfcc1637356081f0c5782bea from main
This commit is contained in:
Andrey Otto 2022-02-21 12:13:36 +07:00 committed by Mariusz Felisiak
parent 75872476ec
commit 89befae7b5

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, otherwise each is a format string that displays the hour and the month,
respectively:: respectively::
{% value|time:"H\h i\m" %} {{ value|time:"H\h i\m" }}
This would display as "01h 23m". This would display as "01h 23m".