From 0a60deb33a94e278bf617cc5aa0432bcfc0b5def Mon Sep 17 00:00:00 2001 From: Alexander Schwenn Date: Fri, 9 Jan 2015 12:30:35 +0100 Subject: [PATCH] [Cookbook][Routing] Fixed typo --- cookbook/routing/service_container_parameters.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/routing/service_container_parameters.rst b/cookbook/routing/service_container_parameters.rst index a3c84db5c04..e40e57fec6c 100644 --- a/cookbook/routing/service_container_parameters.rst +++ b/cookbook/routing/service_container_parameters.rst @@ -8,9 +8,9 @@ Sometimes you may find it useful to make some parts of your routes globally configurable. For instance, if you build an internationalized site, you'll probably start with one or two locales. Surely you'll add a requirement to your routes to prevent a user from matching a locale -other than the locales your support. +other than the locales you support. -You *could* hardcode your ``_locale`` requirement in all your routes. But +You *could* hardcode your ``_locale`` requirement in all your routes, but a better solution is to use a configurable service container parameter right inside your routing configuration: