Skip to content

Correct spelling & grammar in 4.4 configuration/ #16267

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions configuration/env_var_processors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,8 @@ Symfony provides the following env var processors:
$container->setParameter('private_key', '%env(default:raw_key:file:PRIVATE_KEY)%');
$container->setParameter('raw_key', '%env(PRIVATE_KEY)%');

When the fallback parameter is omitted (e.g. ``env(default::API_KEY)``), the
value returned is ``null``.
When the fallback parameter is omitted (e.g. ``env(default::API_KEY)``), then the
returned value is ``null``.

.. versionadded:: 4.3

Expand Down
2 changes: 1 addition & 1 deletion configuration/front_controllers_and_kernel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ should run in "debug mode". Regardless of the
:ref:`configuration environment <configuration-environments>`, a Symfony
application can be run with debug mode set to ``true`` or ``false``.

This affects many things in the application, such as displaying stacktraces on
This affects many things in the application, such as displaying stack traces on
error pages or if cache files are dynamically rebuilt on each request. Though
not a requirement, debug mode is generally set to ``true`` for the ``dev`` and
``test`` environments and ``false`` for the ``prod`` environment.
Expand Down
2 changes: 1 addition & 1 deletion configuration/multiple_kernels.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Now you need to define the ``ApiKernel`` class used by the new front controller.
The easiest way to do this is by duplicating the existing ``src/Kernel.php``
file and make the needed changes.

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

Expand Down