minor #2910 fix(with): comment some strings (Kocal)

This PR was squashed before being merged into the 2.x branch (closes #2910).

Discussion
----------

fix(with): comment some strings

I don't know if it was intentional or not, but I find the following screenshot weird:
![Sélection_027](https://user-images.githubusercontent.com/2103975/54807668-404eb100-4c7e-11e9-8407-526f1e443414.jpg)

I think it's better with a comment instead:
![Sélection_028](https://user-images.githubusercontent.com/2103975/54807638-2ad98700-4c7e-11e9-918a-257af3baf8e1.jpg)

What do you think?

Commits
-------

aca6e2cd fix(with): comment some strings
This commit is contained in:
Fabien Potencier
2019-03-22 08:50:14 +01:00
+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