1
0
Fork 0

remove attribute in method parameter

This commit is contained in:
Patrick Huber 2014-12-01 20:56:23 +01:00
parent 57fe367f87
commit b8bfdaf554
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ extend(RequestContext.prototype, {
/// ```js
/// app.get("/foxx/:id", function {
/// // Do something
/// }).pathParam("id", type: joi.number().integer().required().description("Id of the Foxx"));
/// }).pathParam("id", joi.number().integer().required().description("Id of the Foxx"));
/// ```
///
/// You can also pass in a configuration object instead: