浏览代码

Superfluous bracket (#207)

antimech 7 年之前
父节点
当前提交
cb009caf3b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -44,7 +44,7 @@ Route::group(array('prefix' => 'api/v1', 'middleware' => []), function () {
 	// Custom route added to standard Resource
 	Route::get('example/foo', 'ExampleController@foo');
 	// Standard Resource route
-	Route::resource('example', 'ExampleController'));
+	Route::resource('example', 'ExampleController');
 });
 ```