Skip to content

Fix configuration.rst typo #6337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cookbook/bundles/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ bundle configuration would look like:
acme_social:
twitter:
client_id: 123
client_secret: $ecret
client_secret: $secret

.. code-block:: xml

Expand All @@ -88,7 +88,7 @@ bundle configuration would look like:
http://symfony.com/schema/dic/services/services-1.0.xsd">

<acme-social:config>
<twitter client-id="123" client-secret="$ecret" />
<twitter client-id="123" client-secret="$secret" />
</acme-social:config>

<!-- ... -->
Expand All @@ -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::
Expand Down 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' => '$ecret',
'client_secret' => '$secret',
),
),
)
Expand Down