From 582454407211c302e9bc7a8e742119e6bfe7a92e Mon Sep 17 00:00:00 2001 From: gong023 Date: Sun, 6 Mar 2016 15:43:23 -0800 Subject: [PATCH] Fix configuration.rst typo `$ecret` seems to be typo --- cookbook/bundles/configuration.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cookbook/bundles/configuration.rst b/cookbook/bundles/configuration.rst index fed4e5c20eb..86a7c7a0426 100644 --- a/cookbook/bundles/configuration.rst +++ b/cookbook/bundles/configuration.rst @@ -75,7 +75,7 @@ bundle configuration would look like: acme_social: twitter: client_id: 123 - client_secret: $ecret + client_secret: $secret .. code-block:: xml @@ -88,7 +88,7 @@ bundle configuration would look like: http://symfony.com/schema/dic/services/services-1.0.xsd"> - + @@ -99,7 +99,7 @@ bundle configuration would look like: // app/config/config.php $container->loadFromExtension('acme_social', array( 'client_id' => 123, - 'client_secret' => '$ecret', + 'client_secret' => '$secret', )); .. seealso:: @@ -139,7 +139,7 @@ For the configuration example in the previous section, the array passed to your array( 'twitter' => array( 'client_id' => 123, - 'client_secret' => '$ecret', + 'client_secret' => '$secret', ), ), )