Skip to content

Commit 4cb6993

Browse files
committed
minor #12137 Fix path (OskarStark)
This PR was merged into the 4.3 branch. Discussion ---------- Fix path <!-- 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 ------- 7c1551a Fix path
2 parents 212e907 + 7c1551a commit 4cb6993

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

reference/configuration/framework.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,14 +1210,14 @@ Unlike the other session options, ``cache_limiter`` is set as a regular
12101210

12111211
.. code-block:: yaml
12121212
1213-
# app/config/services.yml
1213+
# config/services.yaml
12141214
parameters:
12151215
session.storage.options:
12161216
cache_limiter: 0
12171217
12181218
.. code-block:: xml
12191219
1220-
<!-- app/config/services.xml -->
1220+
<!-- config/services.xml -->
12211221
<?xml version="1.0" encoding="UTF-8" ?>
12221222
<container xmlns="http://symfony.com/schema/dic/services"
12231223
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -1233,7 +1233,7 @@ Unlike the other session options, ``cache_limiter`` is set as a regular
12331233
12341234
.. code-block:: php
12351235
1236-
// app/config/services.php
1236+
// config/services.php
12371237
$container->setParameter('session.storage.options', [
12381238
'cache_limiter' => 0,
12391239
]);

0 commit comments

Comments
 (0)