Skip to content

Commit 0483c1b

Browse files
committed
minor #16275 Correct spelling & grammar in 4.4 introduction/ (gnito-org)
This PR was merged into the 4.4 branch. Discussion ---------- Correct spelling & grammar in 4.4 introduction/ <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `5.x` for features of unreleased versions). --> Commits ------- 7c8b923 Correct spelling & grammar in 4.4 introduction/
2 parents ead6962 + 7c8b923 commit 0483c1b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

introduction/from_flat_php_to_symfony.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ have *many* controller functions: one for each page.
402402

403403
By now, the application has evolved from a single PHP file into a structure
404404
that is organized and allows for code reuse. You should be happier, but far
405-
from satisfied. For example, the routing system is fickle, and wouldn't
405+
from being satisfied. For example, the routing system is fickle, and wouldn't
406406
recognize that the list page - ``/index.php`` - should be accessible also via ``/``
407407
(if Apache rewrite rules were added). Also, instead of developing the blog,
408408
a lot of time is being spent working on the "architecture" of the code (e.g.

introduction/http_fundamentals.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,10 @@ have all the request information at your fingertips::
234234
$request->getMethod(); // e.g. GET, POST, PUT, DELETE or HEAD
235235
$request->getLanguages(); // an array of languages the client accepts
236236

237-
As a bonus, the ``Request`` class does a lot of work in the background that
238-
you'll never need to worry about. For example, the ``isSecure()`` method
237+
As a bonus, the ``Request`` class does a lot of work in the background about which
238+
you will never need to worry. For example, the ``isSecure()`` method
239239
checks the *three* different values in PHP that can indicate whether or not
240-
the user is connecting via a secured connection (i.e. HTTPS).
240+
the user is connecting via a secure connection (i.e. HTTPS).
241241

242242
Symfony Response Object
243243
~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)