tweaked documentation
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 17 Jul 2012 06:23:45 +0000 (08:23 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Sun, 22 Jul 2012 11:52:31 +0000 (13:52 +0200)
doc/api.rst

index 1f8e1fc..d348fb2 100644 (file)
@@ -148,18 +148,19 @@ methods::
     $loader->addPath($templateDir3);
     $loader->prependPath($templateDir4);
 
-The filesystem loader also supports namespaced templates. This allows to
-divide your templates in different namespaces; each namespace having its own
-template paths. Namespaced templates can be accessed via the special
-``@namespace_name/template_path`` notation::
+The filesystem loader also supports namespaced templates. This allows to group
+your templates under different namespaces which have their own template paths.
+
+When using the ``setPaths()``, ``addPath()``, and ``prependPath()`` methods,
+specify the namespace as the second argument (when not specified, these
+methods act on the "main" namespace)::
 
     $loader->addPath($templateDir, 'admin');
 
-    $twig->render('@admin/index.html', array());
+Namespaced templates can be accessed via the special
+``@namespace_name/template_path`` notation::
 
-The ``setPaths()``, ``addPath()``, and ``prependPath()`` methods all takes a
-namespace as an optional second argument; when not specified, these methods
-work on the "main" namespace.
+    $twig->render('@admin/index.html', array());
 
 ``Twig_Loader_String``
 ......................