File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
634634that it knows which controllers to execute based on the request information.
635635A routing configuration map - ``app/config/routing.yml `` - provides this information
636636in a readable format:
@@ -660,7 +660,7 @@ have to touch it::
660660 $kernel->handle(Request::createFromGlobals())->send();
661661
662662The 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
664664asks the router to inspect the request. The router matches the incoming URL
665665to a specific route and returns information about the route, including the
666666controller that should be executed. The correct controller from the matched
You can’t perform that action at this time.
0 commit comments