Fixing a few small typos/grammatical errors.
authorMark Story <mark@mark-story.com>
Mon, 16 Aug 2010 03:49:29 +0000 (23:49 -0400)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 17 Aug 2010 05:30:45 +0000 (07:30 +0200)
doc/04-Extending-Twig.markdown

index 3851a84..f2836ce 100644 (file)
@@ -401,7 +401,7 @@ already registered:
 Defining new Tags
 -----------------
 
-One of the most exiting feature of a template engine like Twig is the
+One of the most exciting feature of a template engine like Twig is the
 possibility to define new language constructs.
 
 Let's create a simple `set` tag that allows the definition of simple variables
@@ -491,7 +491,7 @@ from the token stream (`$this->parser->getStream()`):
    token).
 
  * `look()`: Looks a the next token. This is how you can have a look at the
-   next token without consume it.
+   next token without consuming it.
 
 Parsing expressions is done by calling the `parseExpression()` like we did for
 the `set` tag.