From 1fbd81f8881864bda71502b7a65a8a8d627364de Mon Sep 17 00:00:00 2001 From: Shayan Zamani Date: Thu, 16 Jan 2025 14:25:27 +0330 Subject: [PATCH] fix(docs/rules/sort-attrs.md): fix typo (#263) Added missing `"` after `"style` at lines 45 and 51. --- docs/rules/sort-attrs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules/sort-attrs.md b/docs/rules/sort-attrs.md index f8a38799..a71958a2 100644 --- a/docs/rules/sort-attrs.md +++ b/docs/rules/sort-attrs.md @@ -42,13 +42,13 @@ When `priority` is defined, the specified attributes are sorted to the front wit The default value of `priority` is `["id", "type", "class", "style"]`. -Examples of **incorrect** code for this rule with the default options (`{ "priority": ["id", "type", "class", "style] }`). +Examples of **incorrect** code for this rule with the default options (`{ "priority": ["id", "type", "class", "style"] }`). ```html,incorrect ``` -Examples of **correct** code for this rule with the default options (`{ "priority": ["id", "type", "class", "style] }`). +Examples of **correct** code for this rule with the default options (`{ "priority": ["id", "type", "class", "style"] }`). ```html,correct