From 940b98f55d7522f13703aaafaf4130835058b686 Mon Sep 17 00:00:00 2001 From: Sysix <3897725+Sysix@users.noreply.github.com> Date: Sun, 29 Jun 2025 11:56:48 +0000 Subject: [PATCH] docs(linter): fix docs for `typescript/no-this-alias` (#11963) --- crates/oxc_linter/src/rules/typescript/no_this_alias.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/oxc_linter/src/rules/typescript/no_this_alias.rs b/crates/oxc_linter/src/rules/typescript/no_this_alias.rs index 7812f506980c0..35eae1326b00b 100644 --- a/crates/oxc_linter/src/rules/typescript/no_this_alias.rs +++ b/crates/oxc_linter/src/rules/typescript/no_this_alias.rs @@ -64,7 +64,6 @@ declare_oxc_lint!( /// ### Why is this bad? /// /// Assigning a variable to `this` instead of properly using arrow lambdas may be a symptom of pre-ES6 practices or not managing scope well. - /// ``` NoThisAlias, typescript, correctness