From fd9643071c1a40f28f38f03724dbfba62cac44f7 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 27 May 2013 08:04:18 +0200 Subject: [PATCH] fixed doc markup (closes #1106) --- doc/api.rst | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/api.rst b/doc/api.rst index 9aa72a6..cbccb0f 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -499,16 +499,16 @@ to enable by passing them to the constructor:: Twig supports the following optimizations: * ``Twig_NodeVisitor_Optimizer::OPTIMIZE_ALL``, enables all optimizations -(this is the default value). + (this is the default value). * ``Twig_NodeVisitor_Optimizer::OPTIMIZE_NONE``, disables all optimizations. -This reduces the compilation time, but it can increase the execution time -and the consumed memory. + This reduces the compilation time, but it can increase the execution time + and the consumed memory. * ``Twig_NodeVisitor_Optimizer::OPTIMIZE_FOR``, optimizes the ``for`` tag by -removing the ``loop`` variable creation whenever possible. + removing the ``loop`` variable creation whenever possible. * ``Twig_NodeVisitor_Optimizer::OPTIMIZE_RAW_FILTER``, removes the ``raw`` -filter whenever possible. + filter whenever possible. * ``Twig_NodeVisitor_Optimizer::OPTIMIZE_VAR_ACCESS``, simplifies the creation -and access of variables in the compiled templates whenever possible. + and access of variables in the compiled templates whenever possible. Exceptions ---------- -- 1.7.2.5