summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils K <24257556+septatrix@users.noreply.github.com>2020-03-22 17:58:20 +0100
committerGitHub <noreply@github.com>2020-03-22 17:58:20 +0100
commit7c18c21fbf5cbbeec7d5e57b774a7c4adf9562ee (patch)
treef8c2bcacfad19dd9ce24829b07a2e14bc109e479
parent45a76a3794a91e6d7077ced88c814a96cc87d5c2 (diff)
downloadjinja2-7c18c21fbf5cbbeec7d5e57b774a7c4adf9562ee.tar.gz
Fix html tag
-rw-r--r--docs/templates.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/templates.rst b/docs/templates.rst
index c08ce4b..a346ef2 100644
--- a/docs/templates.rst
+++ b/docs/templates.rst
@@ -912,9 +912,9 @@ Here's an example of how a call block can be used with arguments::
{% call(user) dump_users(list_of_user) %}
<dl>
- <dl>Realname</dl>
+ <dt>Realname</dt>
<dd>{{ user.realname|e }}</dd>
- <dl>Description</dl>
+ <dt>Description</dt>
<dd>{{ user.description }}</dd>
</dl>
{% endcall %}