From 8b7efb0d9d0e823260f4045a958563bdbf3fc63f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Continente?= Date: Thu, 12 May 2016 02:05:55 +0200 Subject: [PATCH] fixing special shortcut syntax --- book/controller.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/controller.rst b/book/controller.rst index d944f31ca0a..418fa173f3c 100644 --- a/book/controller.rst +++ b/book/controller.rst @@ -492,8 +492,8 @@ The Symfony templating engine is explained in great detail in the .. sidebar:: Templating Naming Pattern You can also put templates in the ``Resources/views`` directory of a bundle and - reference them with a special shortcut syntax like ``@AppBundle/Hello/index.html.twig`` - or ``@AppBundle/layout.html.twig``. These would live in at ``Resources/views/Hello/index.html.twig`` + reference them with a special shortcut syntax like ``@App/Hello/index.html.twig`` + or ``@App/layout.html.twig``. These would live in at ``Resources/views/Hello/index.html.twig`` and ``Resources/views/layout.html.twig`` inside the bundle respectively. .. index::