diff --git a/crates/oxc_linter/src/rules/unicorn/prefer_reflect_apply.rs b/crates/oxc_linter/src/rules/unicorn/prefer_reflect_apply.rs index 1fa9910e7f98d..6f175019cd6fd 100644 --- a/crates/oxc_linter/src/rules/unicorn/prefer_reflect_apply.rs +++ b/crates/oxc_linter/src/rules/unicorn/prefer_reflect_apply.rs @@ -20,6 +20,7 @@ pub struct PreferReflectApply; declare_oxc_lint!( /// ### What it does /// + /// Disallows the use of `Function.prototype.apply()` and suggests using `Reflect.apply()` instead. /// /// ### Why is this bad? ///