From 5e95f05d9b624357dd014ee918d44e465049ee4e Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 20 Nov 2011 22:51:31 -0600 Subject: [PATCH] added more to comment. --- laravel/routing/route.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/routing/route.php b/laravel/routing/route.php index 7f3292f8..b8fd702f 100644 --- a/laravel/routing/route.php +++ b/laravel/routing/route.php @@ -51,7 +51,7 @@ public function __construct($key, $callback, $parameters = array()) // Extract each URI from the route key. Since the route key has the // request method, we will extract that from the string. If the URI // points to the root of the application, a single forward slash - // will be returned. + // will be returned since that is used for the root route. if (strpos($key, ', ') === false) { $this->uris = array($this->extract($this->key));