summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 %}