Skip to content

Commit 6381e62

Browse files
committed
Fix invalid JSON in example
1 parent 20c5be8 commit 6381e62

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/rules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ Options: `boolean`, default: `false`.
178178

179179
```json
180180
{
181-
"checked": 'x',
182-
"unchecked": ' '
181+
"checked": "x",
182+
"unchecked": " "
183183
}
184184
```
185185

lib/rules/checkbox-character-style.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
*
1515
* ```json
1616
* {
17-
* "checked": 'x',
18-
* "unchecked": ' '
17+
* "checked": "x",
18+
* "unchecked": " "
1919
* }
2020
* ```
2121
* @example

0 commit comments

Comments
 (0)