From ae73c4c368383099a05fb8d8bd2d106dabcdc31f Mon Sep 17 00:00:00 2001 From: Chris Sedlmayr Date: Fri, 23 Nov 2012 12:22:50 +0000 Subject: [PATCH] Fixes a typo in the compiler outdent comment --- lib/Twig/Compiler.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/Twig/Compiler.php b/lib/Twig/Compiler.php index c1ab250..95b1869 100644 --- a/lib/Twig/Compiler.php +++ b/lib/Twig/Compiler.php @@ -256,7 +256,7 @@ class Twig_Compiler implements Twig_CompilerInterface */ public function outdent($step = 1) { - // can't outdent by more steps that the current indentation level + // can't outdent by more steps than the current indentation level if ($this->indentation < $step) { throw new LogicException('Unable to call outdent() as the indentation would become negative'); } -- 1.7.2.5