@@ -6,7 +6,7 @@ How to Master and Create new Environments
66
77Every application is the combination of code and a set of configuration that
88dictates how that code should function. The configuration may define the
9- database being used, whether or not something should be cached, or how verbose
9+ database being used, whether something should be cached, or how verbose
1010logging should be. In Symfony, the idea of "environments" is the idea that
1111the same codebase can be run using multiple different configurations. For
1212example, the ``dev `` environment should use configuration that makes development
@@ -170,10 +170,10 @@ this code and changing the environment string.
170170
171171 Important, but unrelated to the topic of *environments * is the ``false ``
172172 argument as the second argument to the ``AppKernel `` constructor. This
173- specifies whether or not the application should run in "debug mode". Regardless
173+ specifies if the application should run in "debug mode". Regardless
174174 of the environment, a Symfony application can be run with debug mode
175175 set to ``true `` or ``false ``. This affects many things in the application,
176- such as whether or not errors should be displayed or if cache files are
176+ such as if errors should be displayed or if cache files are
177177 dynamically rebuilt on each request. Though not a requirement, debug mode
178178 is generally set to ``true `` for the ``dev `` and ``test `` environments
179179 and ``false `` for the ``prod `` environment.
@@ -322,7 +322,7 @@ The new environment is now accessible via::
322322.. note ::
323323
324324 Some environments, like the ``dev `` environment, are never meant to be
325- accessed on any deployed server by the general public. This is because
325+ accessed on any deployed server by the public. This is because
326326 certain environments, for debugging purposes, may give too much information
327327 about the application or underlying infrastructure. To be sure these environments
328328 aren't accessible, the front controller is usually protected from external
0 commit comments