summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/rules/no-global-assign.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/lib/rules/no-global-assign.js')
-rw-r--r--tools/node_modules/eslint/lib/rules/no-global-assign.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/node_modules/eslint/lib/rules/no-global-assign.js b/tools/node_modules/eslint/lib/rules/no-global-assign.js
index 73f36b25e4..4ab0c70644 100644
--- a/tools/node_modules/eslint/lib/rules/no-global-assign.js
+++ b/tools/node_modules/eslint/lib/rules/no-global-assign.js
@@ -41,9 +41,9 @@ module.exports = {
/**
* Reports write references.
- * @param {Reference} reference - A reference to check.
- * @param {int} index - The index of the reference in the references.
- * @param {Reference[]} references - The array that the reference belongs to.
+ * @param {Reference} reference A reference to check.
+ * @param {int} index The index of the reference in the references.
+ * @param {Reference[]} references The array that the reference belongs to.
* @returns {void}
*/
function checkReference(reference, index, references) {
@@ -68,7 +68,7 @@ module.exports = {
/**
* Reports write references if a given variable is read-only builtin.
- * @param {Variable} variable - A variable to check.
+ * @param {Variable} variable A variable to check.
* @returns {void}
*/
function checkVariable(variable) {