Skip to content

Commit

Permalink
fixed wrong secret string in array examples
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarStark authored and wouterj committed Apr 18, 2016
1 parent b2df969 commit f7950ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cookbook/bundles/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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',
),
),
)
Expand All @@ -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
Expand Down

0 comments on commit f7950ab

Please sign in to comment.