Skip to content

Commit f08f0a8

Browse files
committed
Merge pull request #1715 from richardmiller/fixing_note_blocks
Fixing syntax for opening note block so notes render correctly
2 parents 5b5056d + b7a1e36 commit f08f0a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/dependency_injection/compilation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Compiling the Container
66

77
The service container can be compiled for various reasons. These reasons
88
include checking for any potential issues such as circular references and
9-
making the container more efficient by resolving parameters and removing
9+
making the container more efficient by resolving parameters and removing
1010
unused services.
1111

1212
It is compiled by running::
@@ -170,7 +170,7 @@ the XML configuration::
170170
return 'http://www.example.com/symfony/schema/';
171171
}
172172

173-
..note::
173+
.. note::
174174

175175
XSD validation is optional, returning ``false`` from the ``getXsdValidationBasePath``
176176
method will disable it.
@@ -192,7 +192,7 @@ The XML version of the config would then look like this:
192192
193193
</container>
194194
195-
..note::
195+
.. note::
196196

197197
In the Symfony2 full stack framework there is a base Extension class which
198198
implements these methods as well as a shortcut method for processing the
@@ -371,7 +371,7 @@ but getting an up to date configuration whilst developing your application::
371371
// ...
372372
$container->compile();
373373

374-
if(!$isDebug)
374+
if (!$isDebug) {
375375
$dumper = new PhpDumper($container);
376376
file_put_contents($file, $dumper->dump(array('class' => 'MyCachedContainer')));
377377
}

0 commit comments

Comments
 (0)