Skip to content

Commit 6475bff

Browse files
committed
Removing old :term: stuff
1 parent a32adca commit 6475bff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/from_flat_php_to_symfony2.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ The ``layout.php`` file is nearly identical:
630630
The show ``show.php`` template is left as an exercise: updating it should be
631631
really similar to updating the ``list.php`` template.
632632

633-
When Symfony's engine (called the :term:`Kernel`) boots up, it needs a map so
633+
When Symfony's engine (called the Kernel) boots up, it needs a map so
634634
that it knows which controllers to execute based on the request information.
635635
A routing configuration map - ``app/config/routing.yml`` - provides this information
636636
in a readable format:
@@ -660,7 +660,7 @@ have to touch it::
660660
$kernel->handle(Request::createFromGlobals())->send();
661661

662662
The front controller's only job is to initialize Symfony's engine (called the
663-
:term:`Kernel`) and pass it a ``Request`` object to handle. The Symfony core
663+
Kernel) and pass it a ``Request`` object to handle. The Symfony core
664664
asks the router to inspect the request. The router matches the incoming URL
665665
to a specific route and returns information about the route, including the
666666
controller that should be executed. The correct controller from the matched

0 commit comments

Comments
 (0)