@@ -58,7 +58,7 @@ As you can see, this URL contains the PHP script to be used as the front
5858controller. You can use that to easily switch the front controller or use
5959a custom one by placing it in the ``web/ `` directory (e.g. ``app_cache.php ``).
6060
61- When using Apache and the `RewriteRule shipped with the Standard Edition `_,
61+ When using Apache and the `RewriteRule shipped with the Symfony Standard Edition `_,
6262you can omit the filename from the URL and the RewriteRule will use ``app.php ``
6363as the default one.
6464
@@ -145,15 +145,15 @@ configuration from the right *environment*.
145145
146146Environments have been covered extensively
147147:doc: `in the previous chapter </cookbook/configuration/environments >`,
148- and you probably remember that the Standard Edition comes with three
148+ and you probably remember that the Symfony Standard Edition comes with three
149149of them - ``dev ``, ``prod `` and ``test ``.
150150
151151More technically, these names are nothing more than strings passed from the
152152front controller to the ``AppKernel ``'s constructor. This name can then be
153153used in the :method: `Symfony\\ Component\\ HttpKernel\\ KernelInterface::registerContainerConfiguration `
154154method to decide which configuration files to load.
155155
156- The Standard Edition's `AppKernel `_ class implements this method by simply
156+ The Symfony Standard Edition's `AppKernel `_ class implements this method by simply
157157loading the ``app/config/config_*environment*.yml `` file. You are, of course,
158158free to implement this method differently if you need a more sophisticated
159159way of loading your configuration.
@@ -165,5 +165,5 @@ way of loading your configuration.
165165.. _app/console : https://github.com/symfony/symfony-standard/blob/master/app/console
166166.. _AppKernel : https://github.com/symfony/symfony-standard/blob/master/app/AppKernel.php
167167.. _decorate : http://en.wikipedia.org/wiki/Decorator_pattern
168- .. _RewriteRule shipped with the Standard Edition : https://github.com/symfony/symfony-standard/blob/master/web/.htaccess
168+ .. _RewriteRule shipped with the Symfony Standard Edition : https://github.com/symfony/symfony-standard/blob/master/web/.htaccess
169169.. _template methods : http://en.wikipedia.org/wiki/Template_method_pattern
0 commit comments