Skip to content

Commit

Permalink
[symfony#2248] Changing pattern -> path after a merge per @wouterj
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Mar 8, 2013
1 parent c446279 commit b38edbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cookbook/configuration/apache_router.rst
Expand Up @@ -60,13 +60,13 @@ To test that it's working, let's create a very basic route for demo bundle:
# app/config/routing.yml
hello:
pattern: /hello/{name}
path: /hello/{name}
defaults: { _controller: AcmeDemoBundle:Demo:hello }
.. code-block:: xml
<!-- app/config/routing.xml -->
<route id="hello" pattern="/hello/{name}">
<route id="hello" path="/hello/{name}">
<default key="_controller">AcmeDemoBundle:Demo:hello</default>
</route>
Expand Down

0 comments on commit b38edbc

Please sign in to comment.