From 3e6a8db8eb0b414399b1479cc8ff6c07fbe4d88c Mon Sep 17 00:00:00 2001 From: WouterJ Date: Sat, 16 May 2015 20:19:55 +0200 Subject: [PATCH] [#5262] Fixed the final occurence of / --- quick_tour/the_big_picture.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/quick_tour/the_big_picture.rst b/quick_tour/the_big_picture.rst index c8a309de068..d82025deb27 100644 --- a/quick_tour/the_big_picture.rst +++ b/quick_tour/the_big_picture.rst @@ -219,10 +219,10 @@ the application homepage. The second value of ``@Route()`` (e.g. ``name="homepage"``) is optional and sets the name of this route. For now this name is not needed, but later it'll be useful for linking pages. -Considering all this, the ``@Route("/app/example", name="homepage")`` annotation creates -a new route called ``homepage`` which makes Symfony execute the ``index`` -action of the ``Default`` controller when the user browses the ``/`` path -of the application. +Considering all this, the ``@Route("/app/example", name="homepage")`` annotation +creates a new route called ``homepage`` which makes Symfony execute the +``index`` action of the ``Default`` controller when the user browses the +``/app/example`` path of the application. .. tip::