Skip to content

Commit aed381d

Browse files
committed
minor #6003 #5999 fix files names (vincentaubert)
This PR was merged into the 2.3 branch. Discussion ---------- #5999 fix files names Fixes #5999 Commits ------- 7a9c1d7 #5999 fix files names
2 parents 979336b + 7a9c1d7 commit aed381d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

book/service_container.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,15 @@ be specified in YAML, XML or PHP:
109109

110110
.. code-block:: yaml
111111
112-
# app/config/config.yml
112+
# app/config/services.yml
113113
services:
114114
my_mailer:
115115
class: Acme\HelloBundle\Mailer
116116
arguments: [sendmail]
117117
118118
.. code-block:: xml
119119
120-
<!-- app/config/config.xml -->
120+
<!-- app/config/services.xml -->
121121
<?xml version="1.0" encoding="UTF-8" ?>
122122
<container xmlns="http://symfony.com/schema/dic/services"
123123
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -133,7 +133,7 @@ be specified in YAML, XML or PHP:
133133
134134
.. code-block:: php
135135
136-
// app/config/config.php
136+
// app/config/services.php
137137
use Symfony\Component\DependencyInjection\Definition;
138138
139139
$container->setDefinition('my_mailer', new Definition(

0 commit comments

Comments
 (0)