From b451becc2eec9feae9bbe28dce69c865daf01334 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 9 Aug 2011 11:22:27 -0500 Subject: [PATCH] Tweak route documentation. --- application/routes.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/application/routes.php b/application/routes.php index e2a333b2..3d94c647 100644 --- a/application/routes.php +++ b/application/routes.php @@ -28,15 +28,13 @@ | 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()