Skip to content

Commit 50411fe

Browse files
committed
minor #11611 Use correct filepaths (OskarStark)
This PR was merged into the 4.2 branch. Discussion ---------- Use correct filepaths <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- f97b6cf Use correct filepaths for 4.2
2 parents df98545 + f97b6cf commit 50411fe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

controller/service.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,14 @@ which is a common practice when following the `ADR pattern`_
103103
104104
.. code-block:: yaml
105105
106-
# app/config/routing.yml
106+
# config/routes.yaml
107107
hello:
108108
path: /hello/{name}
109109
defaults: { _controller: app.hello_controller }
110110
111111
.. code-block:: xml
112112
113-
<!-- app/config/routing.xml -->
113+
<!-- config/routes.xml -->
114114
<?xml version="1.0" encoding="UTF-8" ?>
115115
<routes xmlns="http://symfony.com/schema/routing"
116116
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

security/form_login_setup.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class that processes the login submit and 4) updates the main security config fi
7474
}
7575
}
7676

77-
Edit the ``security.yml`` file in order to allow access for anyone to the
77+
Edit the ``security.yaml`` file in order to allow access for anyone to the
7878
``/login`` route:
7979

8080
.. configuration-block::

workflow.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ like this:
4646

4747
.. code-block:: yaml
4848
49-
# app/config/config.yml
49+
# config/framework.yaml
5050
framework:
5151
workflows:
5252
blog_publishing:

0 commit comments

Comments
 (0)