From 065eedab7bef7b8eeba75cfbcfc8c51db3ccdd71 Mon Sep 17 00:00:00 2001 From: Farid Nouri Neshat Date: Sun, 11 Jun 2017 02:27:59 +0800 Subject: [PATCH] Fix Model#settings.acls doc type signature --- lib/model.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/model.js b/lib/model.js index 3eaf55d6..37bd024b 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 {Array.} 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');