Skip to content

Commit 85998d1

Browse files
authored
docs: add missing backticks to no-unneeded-ternary (#19222)
1 parent ee8c220 commit 85998d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/rules/no-unneeded-ternary.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ related_rules:
88

99

1010

11-
It's a common mistake in JavaScript to use a conditional expression to select between two Boolean values instead of using ! to convert the test to a Boolean.
11+
It's a common mistake in JavaScript to use a conditional expression to select between two Boolean values instead of using `!` to convert the test to a Boolean.
1212
Here are some examples:
1313

1414
```js
@@ -83,7 +83,7 @@ This rule has an object option:
8383

8484
### defaultAssignment
8585

86-
When set to `true`, which it is by default, The defaultAssignment option allows expressions of the form `x ? x : expr` (where `x` is any identifier and `expr` is any expression).
86+
When set to `true`, which it is by default, The `defaultAssignment` option allows expressions of the form `x ? x : expr` (where `x` is any identifier and `expr` is any expression).
8787

8888
Examples of additional **incorrect** code for this rule with the `{ "defaultAssignment": false }` option:
8989

0 commit comments

Comments
 (0)