Skip to content

Commit f586d79

Browse files
committed
Fixing references to lowercase symfony
1 parent 820f90c commit f586d79

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

book/from_flat_php_to_symfony2.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ an autoloader that Symfony provides. An autoloader is a tool that makes it
426426
possible to start using PHP classes without explicitly including the file
427427
containing the class.
428428

429-
First, `download symfony`_ and place it into a ``vendor/symfony/`` directory.
429+
First, `download Symfony`_ and place it into a ``vendor/symfony/`` directory.
430430
Next, create an ``app/bootstrap.php`` file. Use it to ``require`` the two
431431
files in the application and to configure the autoloader:
432432

@@ -740,7 +740,7 @@ Learn more from the Cookbook
740740
* :doc:`/cookbook/controller/service`
741741

742742
.. _`Doctrine`: http://www.doctrine-project.org
743-
.. _`download symfony`: http://symfony.com/download
743+
.. _`download Symfony`: http://symfony.com/download
744744
.. _`Routing`: https://github.com/symfony/Routing
745745
.. _`Templating`: https://github.com/symfony/Templating
746746
.. _`KnpBundles.com`: http://knpbundles.com/

components/dependency_injection/advanced.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,5 @@ the service itself gets loaded. To do so, you can use the ``file`` directive.
121121
$definition->setFile('%kernel.root_dir%/src/path/to/file/foo.php');
122122
$container->setDefinition('foo', $definition);
123123
124-
Notice that symfony will internally call the PHP function require_once
124+
Notice that Symfony will internally call the PHP function require_once
125125
which means that your file will be included only once per request.

cookbook/configuration/external_parameters.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ in the container. The following imports a file named ``parameters.php``.
158158
In ``parameters.php``, tell the service container the parameters that you wish
159159
to set. This is useful when important configuration is in a nonstandard
160160
format. The example below includes a Drupal database's configuration in
161-
the symfony service container.
161+
the Symfony service container.
162162

163163
.. code-block:: php
164164

cookbook/routing/slash_in_parameter.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ matches the ``/hello/{name}`` route, where ``{name}`` equals ``Fabien/Kris``.
1515
Configure the Route
1616
-------------------
1717

18-
By default, the symfony routing components requires that the parameters
18+
By default, the Symfony routing components requires that the parameters
1919
match the following regex pattern: ``[^/]+``. This means that all characters
2020
are allowed except ``/``.
2121

cookbook/workflow/new_project_svn.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ To get started, you'll need to download Symfony2 and get the basic Subversion se
8484
8585
$ svn propset svn:ignore "bundles" web
8686
87-
$ svn ci -m "commit basic symfony ignore list (vendor, app/bootstrap*, app/config/parameters.ini, app/cache/*, app/logs/*, web/bundles)"
87+
$ svn ci -m "commit basic Symfony ignore list (vendor, app/bootstrap*, app/config/parameters.ini, app/cache/*, app/logs/*, web/bundles)"
8888
8989
6. The rest of the files can now be added and committed to the project:
9090

0 commit comments

Comments
 (0)