Do not mix indention levels

Not sure if this was intentional, but the "if" line had an indention of 3 spaces,
while the "true" line has an indention of 4 spaces.
This commit is contained in:
Grégoire Paris
2016-08-01 14:27:38 +02:00
committed by Fabien Potencier
parent b7cd3a88dc
commit 507f697ad0
+3 -3
View File
@@ -95,7 +95,7 @@ standards:
.. code-block:: jinja
{% block foo %}
{% if true %}
true
{% endif %}
{% if true %}
true
{% endif %}
{% endblock %}