aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Bronson <jab@users.noreply.github.com>2020-03-22 13:28:57 -0400
committerGitHub <noreply@github.com>2020-03-22 13:28:57 -0400
commitb3a9df307220fc88c2bde48da5ff837a33faff31 (patch)
treef8c2bcacfad19dd9ce24829b07a2e14bc109e479
parent45a76a3794a91e6d7077ced88c814a96cc87d5c2 (diff)
parent7c18c21fbf5cbbeec7d5e57b774a7c4adf9562ee (diff)
downloadjinja-b3a9df307220fc88c2bde48da5ff837a33faff31.tar.gz
Merge pull request #1174 from septatrix/patch-1
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 c08ce4b4..a346ef23 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 %}