From 263d6145a7544cd18d7e0dae80e654442b3b68d6 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 25 Mar 2012 22:38:35 -0500 Subject: [PATCH] cleaning up code. --- laravel/bundle.php | 2 +- laravel/config.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/bundle.php b/laravel/bundle.php index 84f15000..dd582138 100644 --- a/laravel/bundle.php +++ b/laravel/bundle.php @@ -176,7 +176,7 @@ public static function disable($bundle) /** * Determine which bundle handles the given URI. * - * If no bundle is assigned to handle the URI, the default bundle is returned. + * The default bundle is returned if no other bundle is assigned. * * @param string $uri * @return string diff --git a/laravel/config.php b/laravel/config.php index 76ccb154..9ea68946 100644 --- a/laravel/config.php +++ b/laravel/config.php @@ -75,7 +75,7 @@ public static function get($key, $default = null) $items = static::$items[$bundle][$file]; // If a specific configuration item was not requested, the key will be null, - // meaning we need to return the entire array of configuration item from the + // meaning we'll to return the entire array of configuration item from the // requested configuration file. Otherwise we can return the item. if (is_null($item)) {