Browse Source

verify Fixed laravel's json test

Mike Smith 11 years ago
parent
commit
be5b062122
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php-laravel/application/routes.php

+ 1 - 1
php-laravel/application/routes.php

@@ -35,7 +35,7 @@ Route::controller(Controller::detect());
 
 Route::get('/json', function()
 {
-    return Response::json(array('message' => 'Hello World!'));
+    return Response::json(array('message' => 'Hello, World!'));
 });
 
 Route::get('/db', function()