fix some typos
authornikic <+@ni-po.com>
Tue, 8 Feb 2011 20:52:55 +0000 (21:52 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 9 Feb 2011 05:50:09 +0000 (06:50 +0100)
lib/Twig/Lexer.php
lib/Twig/Loader/Array.php
lib/Twig/NodeVisitor/SafeAnalysis.php
lib/Twig/Token.php
lib/Twig/TokenParserBrokerInterface.php

index 15147fe..93647f6 100644 (file)
@@ -143,7 +143,7 @@ class Twig_Lexer implements Twig_LexerInterface
 
                 $this->moveCursor(substr($this->code, $this->cursor, $pos - $this->cursor) . $this->options['tag_comment'][1]);
 
-                // mimicks the behavior of PHP by removing the newline that follows instructions if present
+                // mimics the behavior of PHP by removing the newline that follows instructions if present
                 if ("\n" === substr($this->code, $this->cursor, 1)) {
                     ++$this->cursor;
                     ++$this->lineno;
@@ -177,7 +177,7 @@ class Twig_Lexer implements Twig_LexerInterface
             $this->moveCursor($match[0]);
             $this->state = self::STATE_DATA;
 
-            // mimicks the behavior of PHP by removing the newline that follows instructions if present
+            // mimics the behavior of PHP by removing the newline that follows instructions if present
             if ("\n" === substr($this->code, $this->cursor, 1)) {
                 ++$this->cursor;
                 ++$this->lineno;
index 8c8798a..4fbe8b9 100644 (file)
@@ -12,7 +12,7 @@
 /**
  * Loads a template from an array.
  *
- * When using this loader with a cache mehcanism, you should know that a new cache
+ * When using this loader with a cache mechanism, you should know that a new cache
  * key is generated each time a template content "changes" (the cache key being the
  * source code of the template). If you don't want to see your cache grows out of
  * control, you need to take care of clearing the old cache file by yourself.
index 4579f4a..5b1bdb2 100644 (file)
@@ -45,7 +45,7 @@ class Twig_NodeVisitor_SafeAnalysis implements Twig_NodeVisitorInterface
             // constants are marked safe for all
             $this->setSafe($node, array('all'));
         } elseif ($node instanceof Twig_Node_Expression_Conditional) {
-            // instersect safeness of both operands
+            // intersect safeness of both operands
             $safe = $this->intersectSafe($this->getSafe($node->getNode('expr2')), $this->getSafe($node->getNode('expr3')));
             $this->setSafe($node, $safe);
         } elseif ($node instanceof Twig_Node_Expression_Filter) {
index f74453e..a581bb2 100644 (file)
@@ -39,7 +39,7 @@ class Twig_Token
      *
      * @param integer $type   The type of the token
      * @param string  $value  The token value
-     * @param integer $lineno The line positionl in the source
+     * @param integer $lineno The line position in the source
      */
     public function __construct($type, $value, $lineno)
     {
index 09fee54..3ce8ca2 100644 (file)
@@ -30,7 +30,7 @@ interface Twig_TokenParserBrokerInterface
     function getTokenParser($tag);
 
     /**
-     * Calls Twig_TokenParserInterface::setParser on all parsers the implementation knowns of.
+     * Calls Twig_TokenParserInterface::setParser on all parsers the implementation knows of.
      *
      * @param Twig_ParserInterface $parser A Twig_ParserInterface interface
      */