@@ -81,7 +81,7 @@ Configuration
81
81
Use Environment Variables for Infrastructure Configuration
82
82
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
83
83
84
- These are the options that change from one machine to another (e.g. from your
84
+ These are the options that their values changes from one machine to another (e.g. from your
85
85
development machine to the production server) but which don't change the
86
86
application behavior.
87
87
@@ -92,7 +92,7 @@ Use Secret for Sensitive Information
92
92
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
93
93
94
94
When your application has sensitive configuration - like an API key - you should
95
- store those securely via :doc: `secrets </configuration/secrets >`.
95
+ store those securely via :doc: `Symfony’s secrets management system </configuration/secrets >`.
96
96
97
97
Use Parameters for Application Configuration
98
98
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -430,19 +430,19 @@ functional test that checks that all application URLs load successfully::
430
430
}
431
431
432
432
Add this test while creating your application because it requires little effort
433
- and checks that none of your pages returns an error. Later you'll add more
433
+ and checks that none of your pages returns an error. Later, you'll add more
434
434
specific tests for each page.
435
435
436
436
Hardcode URLs in a Functional Test
437
437
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
438
438
439
- In Symfony applications it's recommended to :ref: `generate URLs <routing-generating-urls >`
439
+ In Symfony applications, it's recommended to :ref: `generate URLs <routing-generating-urls >`
440
440
using routes to automatically update all links when a URL changes. However, if a
441
441
public URL changes, users won't be able to browse it unless you set up a
442
442
redirection to the new URL.
443
443
444
444
That's why it's recommended to use raw URLs in tests instead of generating them
445
- from routes. Whenever a route changes, tests will break and you'll know that
445
+ from routes. Whenever a route changes, tests will fail and you'll know that
446
446
you must set up a redirection.
447
447
448
448
.. _`Symfony Demo` : https://github.com/symfony/demo
0 commit comments