Fixes a typo in the compiler outdent comment
authorChris Sedlmayr <chris@sedlmayr.co.uk>
Fri, 23 Nov 2012 12:22:50 +0000 (12:22 +0000)
committerChris Sedlmayr <chris@sedlmayr.co.uk>
Fri, 23 Nov 2012 12:22:50 +0000 (12:22 +0000)
lib/Twig/Compiler.php

index c1ab250..95b1869 100644 (file)
@@ -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');
         }