diff --git a/crates/oxc_linter/src/rules/eslint/max_params.rs b/crates/oxc_linter/src/rules/eslint/max_params.rs index 3e19c15cc5f8b..d982242b00629 100644 --- a/crates/oxc_linter/src/rules/eslint/max_params.rs +++ b/crates/oxc_linter/src/rules/eslint/max_params.rs @@ -81,7 +81,7 @@ declare_oxc_lint!( /// /// ### Options /// - /// ### max + /// #### max /// /// `{ "max": number }` /// @@ -90,7 +90,7 @@ declare_oxc_lint!( /// For example `{ "max": 4 }` would mean that having a function take four /// parameters is allowed which overrides the default of three. /// - /// ### countVoidThis + /// #### countVoidThis /// /// `{ "countVoidThis": boolean }` ///