summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/rules/no-unused-labels.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/lib/rules/no-unused-labels.js')
-rw-r--r--tools/node_modules/eslint/lib/rules/no-unused-labels.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/node_modules/eslint/lib/rules/no-unused-labels.js b/tools/node_modules/eslint/lib/rules/no-unused-labels.js
index 1ba1d05d5c..b33fcb7867 100644
--- a/tools/node_modules/eslint/lib/rules/no-unused-labels.js
+++ b/tools/node_modules/eslint/lib/rules/no-unused-labels.js
@@ -35,8 +35,7 @@ module.exports = {
/**
* Adds a scope info to the stack.
- *
- * @param {ASTNode} node - A node to add. This is a LabeledStatement.
+ * @param {ASTNode} node A node to add. This is a LabeledStatement.
* @returns {void}
*/
function enterLabeledScope(node) {
@@ -50,8 +49,7 @@ module.exports = {
/**
* Removes the top of the stack.
* At the same time, this reports the label if it's never used.
- *
- * @param {ASTNode} node - A node to report. This is a LabeledStatement.
+ * @param {ASTNode} node A node to report. This is a LabeledStatement.
* @returns {void}
*/
function exitLabeledScope(node) {
@@ -81,8 +79,7 @@ module.exports = {
/**
* Marks the label of a given node as used.
- *
- * @param {ASTNode} node - A node to mark. This is a BreakStatement or
+ * @param {ASTNode} node A node to mark. This is a BreakStatement or
* ContinueStatement.
* @returns {void}
*/