From a4d804d0e89cde420246bca08d3d7bbdf6d41eaf Mon Sep 17 00:00:00 2001 From: Luis Cordova Date: Fri, 3 Jan 2014 10:42:10 -0500 Subject: [PATCH] improve explanation of code block for bundle removal and fix typo --- cookbook/bundles/remove.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cookbook/bundles/remove.rst b/cookbook/bundles/remove.rst index 69ba500f2b6..af1dfd774b8 100644 --- a/cookbook/bundles/remove.rst +++ b/cookbook/bundles/remove.rst @@ -18,8 +18,8 @@ starting a project, but you'll probably want to eventually remove it. To disconnect the bundle from the framework, you should remove the bundle from the ``AppKernel::registerBundles()`` method. The bundle is normally found in -the ``$bundles`` array but the AcmeDemoBundle is only registered in a -development environment and you can find him in the if statement after:: +the ``$bundles`` array but the AcmeDemoBundle is only registered in the +development environment and you can find it inside the if statement below:: // app/AppKernel.php @@ -96,8 +96,8 @@ rely on the bundle you are about to remove. .. tip:: If one bundle relies on another, in most it means that it uses some services - from the bundle. Searching for a ``acme_demo`` string may help you spot - them. + from the bundle. Searching for the bundle alias string may help you spot + them (e.g. ``acme_demo`` for bundles depending on AcmeDemoBundle). .. tip::