added a note in the documentation about what the C exension does
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 18 Apr 2012 05:19:25 +0000 (07:19 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 18 Apr 2012 05:19:25 +0000 (07:19 +0200)
doc/intro.rst

index 9a91177..cad60b6 100644 (file)
@@ -102,7 +102,9 @@ Finally, enable the extension in your ``php.ini`` configuration file:
     extension=twig.so
 
 And from now on, Twig will automatically compile your templates to take
-advantage of the C extension.
+advantage of the C extension. Note that this extension does not replace the
+PHP code but only provides an optimized version of the
+``Twig_Template::getAttribute()`` method.
 
 .. tip::