Correct base template name
authorFabien Schurter <fabien.schurter@gmail.com>
Thu, 16 Oct 2014 07:32:46 +0000 (09:32 +0200)
committerFabien Schurter <fabien.schurter@gmail.com>
Thu, 16 Oct 2014 07:32:46 +0000 (09:32 +0200)
The base template name used in $loader1 and $loader2 is actually
"base.html", not "base.twig".

doc/api.rst

index 456754b..7756127 100644 (file)
@@ -199,7 +199,7 @@ projects where storing all templates in a single PHP file might make sense.
         'base.html' => '{% block content %}{% endblock %}',
     ));
     $loader2 = new Twig_Loader_Array(array(
-        'index.html' => '{% extends "base.twig" %}{% block content %}Hello {{ name }}{% endblock %}',
+        'index.html' => '{% extends "base.html" %}{% block content %}Hello {{ name }}{% endblock %}',
         'base.html'  => 'Will never be loaded',
     ));