From 129e252132c7c476d7de17f40b54a333ddb2e6bb Mon Sep 17 00:00:00 2001 From: Francesco Trotta Date: Sat, 18 Mar 2023 20:24:56 +0100 Subject: [PATCH] fix: Fix typo in `logical-assignment-operators` rule description (#17000) --- lib/rules/logical-assignment-operators.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rules/logical-assignment-operators.js b/lib/rules/logical-assignment-operators.js index cd533e63a73..701b3114a9f 100644 --- a/lib/rules/logical-assignment-operators.js +++ b/lib/rules/logical-assignment-operators.js @@ -159,7 +159,7 @@ module.exports = { type: "suggestion", docs: { - description: "Require or disallow logical assignment logical operator shorthand", + description: "Require or disallow logical assignment operator shorthand", recommended: false, url: "https://eslint.org/docs/rules/logical-assignment-operators" },