From 04983831ca8af08341a13352e60ff543411a9c28 Mon Sep 17 00:00:00 2001 From: Candy Date: Wed, 14 Jun 2017 14:38:55 -0400 Subject: [PATCH] Fix API doc for Model class property type --- lib/model.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/model.js b/lib/model.js index eeecfbc9..3eaf55d6 100644 --- a/lib/model.js +++ b/lib/model.js @@ -102,7 +102,7 @@ module.exports = function(registry) { * @property {SharedClass} Model.sharedMethod The `strong-remoting` [SharedClass](http://apidocs.strongloop.com/strong-remoting/#sharedclass) that contains remoting (and http) metadata. Static property. * @property {Object} settings Contains additional model settings. * @property {string} settings.http.path Base URL of the model HTTP route. - * @property [{string}] settings.acls Array of ACLs for the model. + * @property {Array.} settings.acls Array of ACLs for the model. * @class */ var Model = registry.modelBuilder.define('Model');