From 218905ddde1078a178d5c09fccfed4645f1bbb79 Mon Sep 17 00:00:00 2001 From: Sosuke Suzuki Date: Thu, 27 Oct 2022 08:13:25 +0900 Subject: [PATCH] Update lib/rules/no-new-native-nonconstructor.js Co-authored-by: Milos Djermanovic --- lib/rules/no-new-native-nonconstructor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rules/no-new-native-nonconstructor.js b/lib/rules/no-new-native-nonconstructor.js index b4e870e5375b..b9a1d9c30f3b 100644 --- a/lib/rules/no-new-native-nonconstructor.js +++ b/lib/rules/no-new-native-nonconstructor.js @@ -21,7 +21,7 @@ module.exports = { type: "problem", docs: { - description: "Disallow `new` operators with global no constructor functions", + description: "Disallow `new` operators with global non-constructor functions", recommended: false, url: "https://eslint.org/docs/rules/no-new-native-nonconstructor" },