From 70416637c961d9f58d7dcdae0a23cb7e2c1df977 Mon Sep 17 00:00:00 2001 From: Ahmadou Waly NDIAYE Date: Sun, 26 Mar 2023 05:23:24 +0000 Subject: [PATCH] docs: Removed the second object instance for the "no-new" rule --- docs/src/rules/no-new.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/src/rules/no-new.md b/docs/src/rules/no-new.md index 9eeda70095a..d03d0f59452 100644 --- a/docs/src/rules/no-new.md +++ b/docs/src/rules/no-new.md @@ -42,8 +42,6 @@ Examples of **correct** code for this rule: /*eslint no-new: "error"*/ var thing = new Thing(); - -Thing(); ``` :::