Browse Source

Update laravel/documentation/controllers.md

Included missing verb in "Bundles can easily configured" sentence.
J Bruni 12 years ago
parent
commit
c7890bcdc3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/documentation/controllers.md

+ 1 - 1
laravel/documentation/controllers.md

@@ -49,7 +49,7 @@ Check [the routing page](/docs/routing#controller-routing) for more information
 <a name="bundle-controllers"></a>
 <a name="bundle-controllers"></a>
 ## Bundle Controllers
 ## Bundle Controllers
 
 
-Bundles are Laravel's modular package system. Bundles can easily configured to handle requests to your application. We'll be going over [bundles in more detail](/docs/bundles) in another document.
+Bundles are Laravel's modular package system. Bundles can be easily configured to handle requests to your application. We'll be going over [bundles in more detail](/docs/bundles) in another document.
 
 
 Creating controllers that belong to bundles is almost identical to creating your application controllers. Just prefix the controller class name with the name of the bundle, so if your bundle is named "admin", your controller classes would look like this:
 Creating controllers that belong to bundles is almost identical to creating your application controllers. Just prefix the controller class name with the name of the bundle, so if your bundle is named "admin", your controller classes would look like this: