Browse Source

working on comments.

Taylor Otwell 13 years ago
parent
commit
a44ca9d53b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/routing/router.php

+ 2 - 2
laravel/routing/router.php

@@ -128,8 +128,8 @@ class Router {
 
 
 		foreach ($routes as $keys => $callback)
 		foreach ($routes as $keys => $callback)
 		{
 		{
-			// Only check routes that have multiple URIs or wildcards.
-			// Other routes would have been caught by the check for literal matches.
+			// Only check routes that have multiple URIs or wildcards since other
+			// routes would have been caught by the check for literal matches.
 			if (strpos($keys, '(') !== false or strpos($keys, ',') !== false )
 			if (strpos($keys, '(') !== false or strpos($keys, ',') !== false )
 			{
 			{
 				foreach (explode(', ', $keys) as $key)
 				foreach (explode(', ', $keys) as $key)