Skip to content

Commit cb730c4

Browse files
committed
minor #12227 Avoid assuming things are simple (Michelle Sanver)
This PR was submitted for the master branch but it was merged into the 3.4 branch instead (closes #12227). Discussion ---------- Avoid assuming things are simple There are some places in this doc that used the words "simple" or "simply". We should avoid using these terms. See: symfony/diversity#9 Commits ------- 8ab99e8 Avoid assuming things are simple
2 parents b6d2bd0 + 8ab99e8 commit cb730c4

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Diff for: introduction/http_fundamentals.rst

+3-5
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)