summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Otto <30920379+OttoAndrey@users.noreply.github.com>2022-02-21 12:13:36 +0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-21 06:13:59 +0100
commit89befae7b5b7e668d6c2bc4d1b312bc10016130b (patch)
tree193700ded34fab7db258d67f356d29551716a88a
parent75872476ece55f7d31421364cf4a4ce6e7caadbd (diff)
downloaddjango-89befae7b5b7e668d6c2bc4d1b312bc10016130b.tar.gz
[4.0.x] Fixed #33530 -- Fixed typo in docs/ref/templates/builtins.txt.
Backport of f70a875cc05c46b3bfcc1637356081f0c5782bea from main
-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".