@@ -10,8 +10,8 @@ into the architecture now.
1010Understanding the Directory Structure
1111-------------------------------------
1212
13- The directory structure of a Symfony :term: ` application ` is rather flexible,
14- but the recommended structure is as follows:
13+ The directory structure of a Symfony application is rather flexible, but the
14+ recommended structure is as follows:
1515
1616``app/ ``
1717 The application configuration, templates and translations.
@@ -26,8 +26,9 @@ The ``web/`` Directory
2626~~~~~~~~~~~~~~~~~~~~~~
2727
2828The web root directory is the home of all public and static files like images,
29- stylesheets and JavaScript files. It is also where each :term: `front controller `
30- lives, such as the production controller shown here::
29+ stylesheets and JavaScript files. It is also where each front controller (the
30+ file that handles all requests to your application) lives, such as the
31+ production controller shown here::
3132
3233 // web/app.php
3334 require_once __DIR__.'/../app/bootstrap.php.cache';
@@ -72,7 +73,7 @@ Understanding the Bundle System
7273-------------------------------
7374
7475This section introduces one of the greatest and most powerful features of
75- Symfony, the :term: ` bundle ` system.
76+ Symfony: The bundle system.
7677
7778A bundle is kind of like a plugin in other software. So why is it
7879called a *bundle * and not a *plugin *? This is because *everything * is a
@@ -179,8 +180,8 @@ defines the configuration for a specific bundle. For example, ``framework``
179180configures the FrameworkBundle while ``swiftmailer `` configures the
180181SwiftmailerBundle.
181182
182- Each :term: ` environment ` can override the default configuration by providing
183- a specific configuration file. For example, the ``dev `` environment loads
183+ Each environment can override the default configuration by providing a
184+ specific configuration file. For example, the ``dev `` environment loads
184185the ``config_dev.yml `` file, which loads the main configuration (i.e.
185186``config.yml ``) and then modifies it to add some debugging tools:
186187
0 commit comments