diff --git a/crates/oxc_linter/src/rules/unicorn/empty_brace_spaces.rs b/crates/oxc_linter/src/rules/unicorn/empty_brace_spaces.rs index f78f539f03390..803cd9349cbbb 100644 --- a/crates/oxc_linter/src/rules/unicorn/empty_brace_spaces.rs +++ b/crates/oxc_linter/src/rules/unicorn/empty_brace_spaces.rs @@ -29,6 +29,7 @@ declare_oxc_lint!( /// /// ### Examples /// + /// /// Examples of **incorrect** code for this rule: /// ```javascript /// const a = { }; @@ -36,6 +37,8 @@ declare_oxc_lint!( /// } /// ``` /// + /// + /// /// Examples of **correct** code for this rule: /// ```javascript /// const a = {};