@@ -269,7 +269,7 @@ arbitrary matching logic:
269269 * condition="context.getMethod() in ['GET', 'HEAD'] and request.headers.get('User-Agent') matches '/firefox/i'"
270270 * )
271271 *
272- * expressions can also include config parameters:
272+ * expressions can also include configuration parameters:
273273 * condition: "request.headers.get('User-Agent') matches '%app.allowed_browsers%'"
274274 */
275275 public function contact(): Response
@@ -285,7 +285,7 @@ arbitrary matching logic:
285285 path : /contact
286286 controller : ' App\Controller\DefaultController::contact'
287287 condition : " context.getMethod() in ['GET', 'HEAD'] and request.headers.get('User-Agent') matches '/firefox/i'"
288- # expressions can also include config parameters:
288+ # expressions can also include configuration parameters:
289289 # condition: "request.headers.get('User-Agent') matches '%app.allowed_browsers%'"
290290
291291 .. code-block :: xml
@@ -299,7 +299,7 @@ arbitrary matching logic:
299299
300300 <route id =" contact" path =" /contact" controller =" App\Controller\DefaultController::contact" >
301301 <condition >context.getMethod() in ['GET', 'HEAD'] and request.headers.get('User-Agent') matches '/firefox/i'</condition >
302- <!-- expressions can also include config parameters: -->
302+ <!-- expressions can also include configuration parameters: -->
303303 <!-- <condition>request.headers.get('User-Agent') matches '%app.allowed_browsers%'</condition> -->
304304 </route >
305305 </routes >
@@ -314,7 +314,7 @@ arbitrary matching logic:
314314 $routes->add('contact', '/contact')
315315 ->controller([DefaultController::class, 'contact'])
316316 ->condition('context.getMethod() in ["GET", "HEAD"] and request.headers.get("User-Agent") matches "/firefox/i"')
317- // expressions can also include config parameters:
317+ // expressions can also include configuration parameters:
318318 // 'request.headers.get("User-Agent") matches "%app.allowed_browsers%"'
319319 ;
320320 };
@@ -575,7 +575,7 @@ URL Route Parameters
575575.. tip ::
576576
577577 Route requirements (and route paths too) can include
578- :ref: `container parameters <configuration-parameters >`, which is useful to
578+ :ref: `configuration parameters <configuration-parameters >`, which is useful to
579579 define complex regular expressions once and reuse them in multiple routes.
580580
581581.. tip ::
@@ -1681,7 +1681,7 @@ these routes.
16811681 [],
16821682 [],
16831683 ['HTTP_HOST' => 'm.example.com']
1684- // or get the value from some container parameter:
1684+ // or get the value from some configuration parameter:
16851685 // ['HTTP_HOST' => 'm.' . $client->getContainer()->getParameter('domain')]
16861686 );
16871687
0 commit comments