From 56b5ef84801770edd0c3ca84ca1983aec3d26bdf Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Sat, 16 Apr 2016 16:37:36 +0200 Subject: [PATCH] fixed wrong secret string in array examples --- cookbook/bundles/configuration.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/bundles/configuration.rst b/cookbook/bundles/configuration.rst index 4c8746deda8..3c32ef89069 100644 --- a/cookbook/bundles/configuration.rst +++ b/cookbook/bundles/configuration.rst @@ -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' => '$secret', + 'client_secret' => 'your_secret', ), ), ) @@ -155,7 +155,7 @@ beneath it, the incoming array might look like this:: array( 'twitter' => array( 'client_id' => 123, - 'client_secret' => '$secret', + 'client_secret' => 'your_secret', ), ), // values from config_dev.yml