Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit da4a62a

Browse files
committed
[#1996] Fixing a few minor syntax issues
1 parent 93c09e5 commit da4a62a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

book/http_fundamentals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ regardless of how your project is developed. To name a few:
504504
the ``Request`` and ``Response`` classes, as well as other classes for handling
505505
sessions and file uploads;
506506

507-
* :doc:`Routing</components/routing>` - Powerful and fast routing system that
507+
* :doc:`Routing</components/routing/introduction>` - Powerful and fast routing system that
508508
allows you to map a specific URI (e.g. ``/contact``) to some information
509509
about how that request should be handled (e.g. execute the ``contactAction()``
510510
method);

cookbook/symfony1.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ third-party library you load through composer has their settings defined
154154
and Composer takes care of everything for you.
155155

156156
For this to work, all third-party libraries used by your project must be
157-
defined in the `composer.json` file.
157+
defined in the ``composer.json`` file.
158158

159159
If you look at the ``HelloController`` from the Symfony2 Standard Edition you
160160
can see that it lives in the ``Acme\DemoBundle\Controller`` namespace. Yet, the
161-
``AcmeDemoBundle`` is not defined in your `composer.json` file. Nonetheless are
161+
``AcmeDemoBundle`` is not defined in your ``composer.json`` file. Nonetheless are
162162
the files autoloaded. This is because you can tell composer to autoload files
163163
from specific directories without defining a dependency:
164164

0 commit comments

Comments
 (0)