Skip to content

Commit 70ecc72

Browse files
committed
Correct spelling & grammar in 4.4 configuration/
1 parent 62c0653 commit 70ecc72

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

configuration/env_var_processors.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,8 @@ Symfony provides the following env var processors:
525525
$container->setParameter('private_key', '%env(default:raw_key:file:PRIVATE_KEY)%');
526526
$container->setParameter('raw_key', '%env(PRIVATE_KEY)%');
527527
528-
When the fallback parameter is omitted (e.g. ``env(default::API_KEY)``), the
529-
value returned is ``null``.
528+
When the fallback parameter is omitted (e.g. ``env(default::API_KEY)``), then the
529+
returned value is ``null``.
530530

531531
.. versionadded:: 4.3
532532

configuration/front_controllers_and_kernel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ should run in "debug mode". Regardless of the
135135
:ref:`configuration environment <configuration-environments>`, a Symfony
136136
application can be run with debug mode set to ``true`` or ``false``.
137137

138-
This affects many things in the application, such as displaying stacktraces on
138+
This affects many things in the application, such as displaying stack traces on
139139
error pages or if cache files are dynamically rebuilt on each request. Though
140140
not a requirement, debug mode is generally set to ``true`` for the ``dev`` and
141141
``test`` environments and ``false`` for the ``prod`` environment.

configuration/multiple_kernels.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Now you need to define the ``ApiKernel`` class used by the new front controller.
7777
The easiest way to do this is by duplicating the existing ``src/Kernel.php``
7878
file and make the needed changes.
7979

80-
In this example, the ``ApiKernel`` will load less bundles than the default
80+
In this example, the ``ApiKernel`` will load fewer bundles than the default
8181
Kernel. Be sure to also change the location of the cache, logs and configuration
8282
files so they don't collide with the files from ``src/Kernel.php``::
8383

0 commit comments

Comments
 (0)