@@ -7,9 +7,9 @@ The HttpKernel Component
77========================
88
99 The HttpKernel component provides a structured process for converting
10- a ``Request `` into a ``Response `` by making use of the EventDispatcher.
11- It's flexible enough to create a full-stack framework (Symfony), a micro-framework
12- (Silex) or an advanced CMS system (Drupal).
10+ a ``Request `` into a ``Response `` by making use of the EventDispatcher
11+ component. It's flexible enough to create a full-stack framework (Symfony),
12+ a micro-framework (Silex) or an advanced CMS system (Drupal).
1313
1414Installation
1515------------
@@ -79,10 +79,11 @@ and talks about how one specific implementation of the HttpKernel - the Symfony
7979Framework - works.
8080
8181Initially, using the :class: `Symfony\\ Component\\ HttpKernel\\ HttpKernel `
82- is really simple, and involves creating an :doc: `EventDispatcher </components/event_dispatcher/introduction >`
83- and a :ref: `controller resolver <component-http-kernel-resolve-controller >`
84- (explained below). To complete your working kernel, you'll add more event
85- listeners to the events discussed below::
82+ is really simple and involves creating an
83+ :doc: `event dispatcher </components/event_dispatcher/introduction >` and a
84+ :ref: `controller resolver <component-http-kernel-resolve-controller >` (explained
85+ below). To complete your working kernel, you'll add more event listeners
86+ to the events discussed below::
8687
8788 use Symfony\Component\HttpFoundation\Request;
8889 use Symfony\Component\HttpKernel\HttpKernel;
0 commit comments