From 01a9fa2ab2a60362d8b945a3b98569b5b4acc0ed Mon Sep 17 00:00:00 2001 From: Rand McKinney Date: Tue, 16 Aug 2016 10:14:17 -0700 Subject: [PATCH] Update acl.js Fix typo in JS doc. --- common/models/acl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/models/acl.js b/common/models/acl.js index 4330f0cb..c83bdd8f 100644 --- a/common/models/acl.js +++ b/common/models/acl.js @@ -74,7 +74,7 @@ assert(Role, 'Role model must be defined before ACL model'); * - ALLOW: Explicitly grants access to the resource. * - AUDIT: Log, in a system-dependent way, the access specified in the permissions component of the ACL entry. * - DENY: Explicitly denies access to the resource. - * @property {String} principalType Type of the principal; one of: Application, Use, Role. + * @property {String} principalType Type of the principal; one of: Application, User, Role. * @property {String} principalId ID of the principal - such as appId, userId or roleId. * @property {Object} settings Extends the `Model.settings` object. * @property {String} settings.defaultPermission Default permission setting: ALLOW, DENY, ALARM, or AUDIT. Default is ALLOW.