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