Skip to content

Commit 713dfe3

Browse files
stopfstedtweaverryan
authored andcommitted
fixed inconsistency in code examples.
1 parent 72072e9 commit 713dfe3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/http_fundamentals.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ by adding an entry for ``/contact`` to your routing configuration file:
430430
.. code-block:: xml
431431
432432
<route id="contact" path="/contact">
433-
<default key="_controller">AcmeBlogBundle:Main:contact</default>
433+
<default key="_controller">AcmeDemoBundle:Main:contact</default>
434434
</route>
435435
436436
.. code-block:: php
@@ -441,7 +441,7 @@ by adding an entry for ``/contact`` to your routing configuration file:
441441
442442
$collection = new RouteCollection();
443443
$collection->add('contact', new Route('/contact', array(
444-
'_controller' => 'AcmeBlogBundle:Main:contact',
444+
'_controller' => 'AcmeDemoBundle:Main:contact',
445445
)));
446446
447447
return $collection;

0 commit comments

Comments
 (0)