Fixed typos
authorPascal Borreli <pascal@borreli.com>
Sun, 10 Mar 2013 02:06:44 +0000 (02:06 +0000)
committerPascal Borreli <pascal@borreli.com>
Sun, 10 Mar 2013 02:06:44 +0000 (02:06 +0000)
CHANGELOG
lib/Twig/TokenParser/Do.php
lib/Twig/TokenParser/Set.php
test/Twig/Tests/Fixtures/tags/autoescape/literal.test
test/Twig/Tests/ParserTest.php
test/Twig/Tests/TemplateTest.php
test/Twig/Tests/escapingTest.php

index 8618b64..c83a097 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -386,7 +386,7 @@ Changes:
  * enhanced error messages when an unexpected token is parsed in an expression
  * fixed filename not being added to syntax error messages
  * added the autoescape option to enable/disable autoescaping
- * removed the newline after a comment (mimicks PHP behavior)
+ * removed the newline after a comment (mimics PHP behavior)
  * added a syntax error exception when parent block is used on a template that does not extend another one
  * made the Escaper extension enabled by default
  * fixed sandbox extension when used with auto output escaping
index 593d1c6..f50939d 100644 (file)
@@ -10,7 +10,7 @@
  */
 
 /**
- * Evaluates an expression, disgarding the returned value.
+ * Evaluates an expression, discarding the returned value.
  */
 class Twig_TokenParser_Do extends Twig_TokenParser
 {
index 6dbd1db..70e0b41 100644 (file)
@@ -49,7 +49,7 @@ class Twig_TokenParser_Set extends Twig_TokenParser
             $stream->expect(Twig_Token::BLOCK_END_TYPE);
 
             if (count($names) !== count($values)) {
-                throw new Twig_Error_Syntax("When using set, you must have the same number of variables and assignements.", $stream->getCurrent()->getLine(), $stream->getFilename());
+                throw new Twig_Error_Syntax("When using set, you must have the same number of variables and assignments.", $stream->getCurrent()->getLine(), $stream->getFilename());
             }
         } else {
             $capture = true;
index 775bfd0..e389d4d 100644 (file)
@@ -9,7 +9,7 @@
 2. Conditional expression with only literals
 {{ true ? "<br />" : "<br>" }}
 
-3. Conditonal expression with a variable
+3. Conditional expression with a variable
 {{ true ? "<br />" : someVar }}
 
 4. Nested conditionals with only literals
@@ -32,7 +32,7 @@ return array()
 2. Conditional expression with only literals
 <br />
 
-3. Conditonal expression with a variable
+3. Conditional expression with a variable
 &lt;br /&gt;
 
 4. Nested conditionals with only literals
index 9c757ee..55eb7fb 100644 (file)
@@ -23,7 +23,7 @@ class Twig_Tests_ParserTest extends PHPUnit_Framework_TestCase
      * @expectedException        Twig_Error_Syntax
      * @expectedExceptionMessage Unknown tag name "foo". Did you mean "for" at line 1
      */
-    public function testUnkownTag()
+    public function testUnknownTag()
     {
         $stream = new Twig_TokenStream(array(
             new Twig_Token(Twig_Token::BLOCK_START_TYPE, '', 1),
index 448bdf8..7b821dc 100644 (file)
@@ -67,7 +67,7 @@ class Twig_Tests_TemplateTest extends PHPUnit_Framework_TestCase
     public function testGetAttributeWithSandbox($object, $item, $allowed, $useExt)
     {
         $twig = new Twig_Environment();
-        $policy = new Twig_Sandbox_SecurityPolicy(array(), array(), array(/*methid*/), array(/*peop*/), array());
+        $policy = new Twig_Sandbox_SecurityPolicy(array(), array(), array(/*method*/), array(/*prop*/), array());
         $twig->addExtension(new Twig_Extension_Sandbox($policy, !$allowed));
         $template = new Twig_TemplateTest($twig, $useExt);
 
index 2492b3a..b41b5f9 100644 (file)
@@ -29,7 +29,7 @@ class Twig_Test_EscapingTest extends PHPUnit_Framework_TestCase
         '.'     => '.',
         '-'     => '-',
         '_'     => '_',
-        /* Basic alnums exluded */
+        /* Basic alnums excluded */
         'a'     => 'a',
         'A'     => 'A',
         'z'     => 'z',
@@ -63,7 +63,7 @@ class Twig_Test_EscapingTest extends PHPUnit_Framework_TestCase
         ','     => ',',
         '.'     => '.',
         '_'     => '_',
-        /* Basic alnums exluded */
+        /* Basic alnums excluded */
         'a'     => 'a',
         'A'     => 'A',
         'z'     => 'z',
@@ -127,7 +127,7 @@ class Twig_Test_EscapingTest extends PHPUnit_Framework_TestCase
         ','     => '\\2C ',
         '.'     => '\\2E ',
         '_'     => '\\5F ',
-        /* Basic alnums exluded */
+        /* Basic alnums excluded */
         'a'     => 'a',
         'A'     => 'A',
         'z'     => 'z',