소스 검색

Update README.md

Marcel Pociot 9 년 전
부모
커밋
303c412bcc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -2,7 +2,7 @@
 
 Automatically generate your API documentation from your existing Laravel routes. Take a look at the [example documentation](http://marcelpociot.com/whiteboard/).
 
-`php artisan api:gen --routePrefix=settings/api/*`
+`php artisan api:gen --routePrefix="settings/api/*"`
 
 ![image](http://img.shields.io/packagist/v/mpociot/laravel-apidoc-generator.svg?style=flat)
 ![image](http://img.shields.io/packagist/l/mpociot/laravel-apidoc-generator.svg?style=flat)
@@ -31,7 +31,7 @@ Mpociot\ApiDoc\ApiDocGeneratorServiceProvider::class,
 To generate your API documentation, use the `api:generate` artisan command.
 
 ```sh
-$ php artisan api:generate --routePrefix=api/v1/*
+$ php artisan api:generate --routePrefix="api/v1/*"
 ```
 
 This command will scan your applications routes for the URIs matching `api/v1/*` and will parse these controller methods and form requests.