From 923a8cb752b8dee1e622c5fd36f3f53288e30602 Mon Sep 17 00:00:00 2001 From: Brandon Mills Date: Thu, 24 Oct 2019 16:56:28 -0400 Subject: [PATCH] Chore: Fix lint failure in JSDoc comment (#12489) We merged a PR that had been waiting for a while, and we had added a lint rule since it had been opened that caused the build to fail once merged to master. --- lib/rules/no-param-reassign.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rules/no-param-reassign.js b/lib/rules/no-param-reassign.js index 2d873e9e915..d65eb34762a 100644 --- a/lib/rules/no-param-reassign.js +++ b/lib/rules/no-param-reassign.js @@ -148,7 +148,7 @@ module.exports = { * Tests that an identifier name matches any of the ignored property assignments. * First we test strings in ignoredPropertyAssignmentsFor. * Then we instantiate and test RegExp objects from ignoredPropertyAssignmentsForRegex strings. - * @param {string} identifierName - A string that describes the name of an identifier to + * @param {string} identifierName A string that describes the name of an identifier to * ignore property assignments for. * @returns {boolean} Whether the string matches an ignored property assignment regular expression or not. */