From d0de4731f6a91029cdb37cfdc5e538ff994a0673 Mon Sep 17 00:00:00 2001 From: Ahmed Siouani Date: Tue, 29 Apr 2014 17:56:23 +0200 Subject: [PATCH] Fixed typo (escaping strategy). --- doc/internals.rst | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/internals.rst b/doc/internals.rst index 16f425a..a68796b 100644 --- a/doc/internals.rst +++ b/doc/internals.rst @@ -124,7 +124,7 @@ using):: { // line 1 echo "Hello "; - echo twig_escape_filter($this->env, $this->getContext($context, "name"), "ndex", null, true); + echo twig_escape_filter($this->env, $this->getContext($context, "name"), "html", null, true); } // some more code -- 1.7.2.5