fix(with): comment some strings

This commit is contained in:
Hugo Alliaume
2019-03-22 08:38:02 +01:00
committed by Fabien Potencier
parent e6d2f8b33d
commit aca6e2cd44
+2 -2
View File
@@ -8,7 +8,7 @@ scope are not visible outside of the scope:
{% with %}
{% set foo = 42 %}
{{ foo }} foo is 42 here
{{ foo }} {# foo is 42 here #}
{% endwith %}
foo is not visible here any longer
@@ -19,7 +19,7 @@ is equivalent to the following one:
.. code-block:: jinja
{% with { foo: 42 } %}
{{ foo }} foo is 42 here
{{ foo }} {# foo is 42 here #}
{% endwith %}
foo is not visible here any longer