@@ -5,13 +5,13 @@ How to Master and Create new Environments
55=========================================
66
77Every application is the combination of code and a set of configuration that
8- dictates how that code should function. The configuration may define the
9- database being used, if something should be cached or how verbose
10- logging should be. In Symfony, the idea of "environments" is the idea that
11- thesame codebase can be run using multiple different configurations. For
12- example, the ``dev `` environment should use configuration that makes development
13- easy and friendly, while the `` prod `` environment should use a set of configuration
14- optimized for speed.
8+ dictates how that code should function. The configuration may define the database
9+ being used, if something should be cached or how verbose logging should be.
10+
11+ In Symfony, theidea of "environments" is the idea that the same codebase can be
12+ run using multiple different configurations. For example, the ``dev `` environment
13+ should use configuration that makes development easy and friendly, while the
14+ `` prod `` environment should use a set of configuration optimized for speed.
1515
1616..index ::
1717 single: Environments; Configuration files