added a note about using rewind() after look()
authorFabien Potencier <fabien.potencier@gmail.com>
Sun, 7 Nov 2010 13:37:08 +0000 (14:37 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Sun, 7 Nov 2010 13:37:08 +0000 (14:37 +0100)
doc/04-Extending-Twig.markdown

index e4b3f0b..eee93af 100644 (file)
@@ -491,7 +491,8 @@ 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 consuming it.
+   next token without consuming it (after you are done with `look()`, you must
+   use `rewind()`).
 
 Parsing expressions is done by calling the `parseExpression()` like we did for
 the `set` tag.