From 8e51ea943c2fcd05bd8917cfa89e36b91209c7cd Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Mon, 12 Jun 2023 23:32:46 +0530 Subject: [PATCH] docs: resubmit `no-new` rule documentation (#17264) --- docs/src/rules/no-new.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/rules/no-new.md b/docs/src/rules/no-new.md index 9eeda70095a..c8cea29cb0f 100644 --- a/docs/src/rules/no-new.md +++ b/docs/src/rules/no-new.md @@ -43,7 +43,7 @@ Examples of **correct** code for this rule: var thing = new Thing(); -Thing(); +Foo(); ``` :::