From e69f988fe52dc9799215ef8373b0e9c19dc3a7c0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 23 Feb 2012 09:09:56 -0600 Subject: [PATCH] improving some comments. --- laravel/routing/router.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/routing/router.php b/laravel/routing/router.php index d266fa56..aead9804 100644 --- a/laravel/routing/router.php +++ b/laravel/routing/router.php @@ -149,7 +149,7 @@ public static function group($attributes, Closure $callback) call_user_func($callback); // Once the routes have been registered, we want to set the group to - // null so the attributes will not be assigned to any of the routes + // null so the attributes will not be given to any of the routes // that are added after the group is declared. static::$group = null; } @@ -176,7 +176,7 @@ public static function register($method, $route, $action) // If the developer is registering multiple request methods to handle // the URI, we'll spin through each method and register the route - // for each of them along with each URI. + // for each of them along with each URI and action. if (is_array($method)) { foreach ($method as $http)