Skip to content

Commit 67b7bbd

Browse files
committed
minor symfony#3413 [Cookbook][Bundles] improve explanation of code block for bundle removal (cordoval)
This PR was merged into the 2.3 branch. Discussion ---------- [Cookbook][Bundles] improve explanation of code block for bundle removal | Q | A | | --- | --- | | Doc fix? | yes | | New docs? | no | | Applies to | 2.3+ | | Fixed tickets | symfony#3384 | | License | CC-ASA 3.0 Unported | Sent using [manager-tools](https://github.com/cordoval/manager-tools) Commits ------- a4d804d improve explanation of code block for bundle removal and fix typo
2 parents 7c5a914 + a4d804d commit 67b7bbd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cookbook/bundles/remove.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ starting a project, but you'll probably want to eventually remove it.
1818

1919
To disconnect the bundle from the framework, you should remove the bundle from
2020
the ``AppKernel::registerBundles()`` method. The bundle is normally found in
21-
the ``$bundles`` array but the AcmeDemoBundle is only registered in a
22-
development environment and you can find him in the if statement after::
21+
the ``$bundles`` array but the AcmeDemoBundle is only registered in the
22+
development environment and you can find it inside the if statement below::
2323

2424
// app/AppKernel.php
2525

@@ -96,8 +96,8 @@ rely on the bundle you are about to remove.
9696
.. tip::
9797

9898
If one bundle relies on another, in most it means that it uses some services
99-
from the bundle. Searching for a ``acme_demo`` string may help you spot
100-
them.
99+
from the bundle. Searching for the bundle alias string may help you spot
100+
them (e.g. ``acme_demo`` for bundles depending on AcmeDemoBundle).
101101

102102
.. tip::
103103

0 commit comments

Comments
 (0)