Skip to content

Commit 7a39664

Browse files
ducinweaverryan
authored andcommitted
fixed typo in dependency_injection/compilation chapter: should be contAiner instead of continer
1 parent 60ef75a commit 7a39664

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/dependency_injection/compilation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ configuration. The ``PhpDumper`` makes dumping the compiled container easy::
319319

320320
if (file_exists($file)) {
321321
require_once $file;
322-
$container = new ProjectServiceContiner();
322+
$container = new ProjectServiceContainer();
323323
} else {
324324
$container = new ContainerBuilder();
325325
// ...
@@ -329,7 +329,7 @@ configuration. The ``PhpDumper`` makes dumping the compiled container easy::
329329
file_put_contents($file, $dumper->dump());
330330
}
331331

332-
``ProjectServiceContiner`` is the default name given to the dumped container
332+
``ProjectServiceContainer`` is the default name given to the dumped container
333333
class, you can change this though this with the ``class`` option when you dump
334334
it::
335335

0 commit comments

Comments
 (0)