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(); ``` :::