From 12be0dfff68258f5e770da25fe503ddd79a9dd01 Mon Sep 17 00:00:00 2001 From: Thieres Tembra Date: Fri, 11 Mar 2016 18:37:58 -0300 Subject: [PATCH] Missing a comma on @Parameters required example --- API Blueprint Documentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API Blueprint Documentation.md b/API Blueprint Documentation.md index 0ee494b..14fefb1 100644 --- a/API Blueprint Documentation.md +++ b/API Blueprint Documentation.md @@ -256,7 +256,7 @@ You can also define the parameters `type` and whether or not it's `required`. ```php /** * @Parameters({ - * @Parameter("example", type="integer", required=true description="This is an example.", default=1) + * @Parameter("example", type="integer", required=true, description="This is an example.", default=1) * }) */ public function index()