diff --git a/src/Illuminate/Routing/RouteCollection.php b/src/Illuminate/Routing/RouteCollection.php index d3fd6a9d1143..c5a0ce2e0a0a 100644 --- a/src/Illuminate/Routing/RouteCollection.php +++ b/src/Illuminate/Routing/RouteCollection.php @@ -77,9 +77,9 @@ protected function addToCollections($route) */ protected function addLookups($route) { - // If the route has a name, we will add it to the name look-up table so that we - // will quickly be able to find any route associate with a name and not have - // to iterate through every route every time we need to perform a look-up. + // If the route has a name, we will add it to the name look-up table, so that we + // will quickly be able to find the route associated with a name and not have + // to iterate through every route every time we need to find a named route. if ($name = $route->getName()) { $this->nameList[$name] = $route; }