@@ -23,8 +23,7 @@ to communicate with each other. For example, when checking for the latest
2323.. image :: /_images/http/xkcd-full.png
2424 :align: center
2525
26- And while the actual language used is a bit more formal, it's still dead-simple.
27- HTTP is the term used to describe this simple text-based language. The goal of
26+ HTTP is the term used to describe this text-based language. The goal of
2827your server is *always * to understand text requests and return text responses.
2928
3029Symfony is built from the ground up around that reality. Whether you realize
@@ -147,8 +146,7 @@ Requests, Responses and Web Development
147146~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148147
149148This request-response conversation is the fundamental process that drives all
150- communication on the web. And as important and powerful as this process is,
151- it's inescapably simple.
149+ communication on the web.
152150
153151The most important fact is this: regardless of the language you use, the
154152type of application you build (web, mobile, JSON API) or the development
@@ -328,7 +326,7 @@ executing different PHP files, the front controller is *always* executed,
328326and the routing of different URLs to different parts of your application
329327is done internally.
330328
331- A very simple front controller might look like this::
329+ A small front controller might look like this::
332330
333331 // index.php
334332 use Symfony\Component\HttpFoundation\Request;
0 commit comments