Skip to content

Commit 8ab99e8

Browse files
michellesanverOskarStark
authored andcommitted
Avoid assuming things are simple
1 parent b6d2bd0 commit 8ab99e8

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

introduction/http_fundamentals.rst

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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
2827
your server is *always* to understand text requests and return text responses.
2928

3029
Symfony is built from the ground up around that reality. Whether you realize
@@ -147,8 +146,7 @@ Requests, Responses and Web Development
147146
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148147

149148
This 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

153151
The most important fact is this: regardless of the language you use, the
154152
type 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,
328326
and the routing of different URLs to different parts of your application
329327
is 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

Comments
 (0)