From aee4b31f0ee81387681300ec9707ddd52f672029 Mon Sep 17 00:00:00 2001 From: figaw Date: Wed, 2 Nov 2016 00:28:01 +0100 Subject: [PATCH] Fix typo --- quick_tour/the_big_picture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_tour/the_big_picture.rst b/quick_tour/the_big_picture.rst index 1ddd3259990..21f94bef03c 100644 --- a/quick_tour/the_big_picture.rst +++ b/quick_tour/the_big_picture.rst @@ -114,7 +114,7 @@ start with ``/**``, whereas regular PHP comments start with ``/*``. The first value of ``@Route()`` defines the URL that will trigger the execution of the action. As you don't have to add the host of your application to -the URL (e.g. ```http://example.com``), these URLs are always relative and +the URL (e.g. ``http://example.com``), these URLs are always relative and they are usually called *paths*. In this case, the ``/`` path refers to 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,