From 6a437b6b2b351dacd2ae195ae611f7a1e2b96f92 Mon Sep 17 00:00:00 2001 From: Pol Date: Tue, 17 Mar 2015 09:34:20 +0100 Subject: [PATCH] Use AppBundle instead of AcmeDemoBundle for consistency --- book/http_fundamentals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/http_fundamentals.rst b/book/http_fundamentals.rst index b955c03ea7e..38027843014 100644 --- a/book/http_fundamentals.rst +++ b/book/http_fundamentals.rst @@ -460,7 +460,7 @@ by adding an entry for ``/contact`` to your routing configuration file: When someone visits the ``/contact`` page, this route is matched, and the specified controller is executed. As you'll learn in the :doc:`routing chapter `, -the ``AcmeDemoBundle:Main:contact`` string is a short syntax that points to a +the ``AppBundle:Main:contact`` string is a short syntax that points to a specific PHP method ``contactAction`` inside a class called ``MainController``:: // src/AppBundle/Controller/MainController.php