Browse Source

Tweak route documentation.

Taylor Otwell 13 years ago
parent
commit
b451becc2e
1 changed files with 1 additions and 3 deletions
  1. 1 3
      application/routes.php

+ 1 - 3
application/routes.php

@@ -28,15 +28,13 @@ return array(
 	|			return 'Hello World!';
 	|		}
 	|
-	| Allow URI wildcards using the (:num) or (:any) place-holders:
+	| Here's how to allow URI wildcards using the (:num) or (:any) place-holders:
 	|
 	|		'GET /hello/(:any)' => function($name)
 	|		{
 	|			return "Welcome, $name.";
 	|		}
 	|
-	| Ready to learn more? Check out: http://laravel.com/docs/start/routes
-	|
 	*/
 
 	'GET /' => function()