From 742eed99bdec63fb9ecb23489d3a49838d661bd2 Mon Sep 17 00:00:00 2001 From: Antony Garand Date: Tue, 10 Jul 2018 06:20:43 -0400 Subject: [PATCH] Fixed typo in server/api/utils (#9714) no issue - removed the extra `*` from the jsdoc of the handlePermissions function --- core/server/api/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/server/api/utils.js b/core/server/api/utils.js index 69f4f2c48e..08851ee98b 100644 --- a/core/server/api/utils.js +++ b/core/server/api/utils.js @@ -193,7 +193,7 @@ utils = { * ## Handle Permissions * @param {String} docName * @param {String} method (browse || read || edit || add || destroy) - * * @param {Array} unsafeAttrNames - attribute names (e.g. post.status) that could change the outcome + * @param {Array} unsafeAttrNames - attribute names (e.g. post.status) that could change the outcome * @returns {Function} */ handlePermissions: function handlePermissions(docName, method, unsafeAttrNames) {