minor #2515 Update internals.rst (pribilinskiy)

This PR was submitted for the 2.x branch but it was merged into the 1.x branch instead (closes #2515).

Discussion
----------

Update internals.rst

Missing an opening paren

Commits
-------

b8967bd3 Update internals.rst
This commit is contained in:
Fabien Potencier
2017-06-16 06:42:12 -07:00
+1 -1
View File
@@ -128,7 +128,7 @@ using)::
{
// line 1
echo "Hello ";
echo twig_escape_filter($this->env, isset($context["name"]) ? $context["name"] : null), "html", null, true);
echo twig_escape_filter($this->env, (isset($context["name"]) ? $context["name"] : null), "html", null, true);
}
// some more code