From: Chris Sedlmayr Date: Fri, 23 Nov 2012 12:22:50 +0000 (+0000) Subject: Fixes a typo in the compiler outdent comment X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=ae73c4c368383099a05fb8d8bd2d106dabcdc31f;p=konrad%2Ftwig.git Fixes a typo in the compiler outdent comment --- 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'); }