Skip to content

Commit db574c4

Browse files
authored
docs: add missing backticks to no-void (#19313)
1 parent 8d943c3 commit db574c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/rules/no-void.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Some code styles prohibit `void` operator, marking it as non-obvious and hard to
5656

5757
## Rule Details
5858

59-
This rule aims to eliminate use of void operator.
59+
This rule aims to eliminate use of `void` operator.
6060

6161
Examples of **incorrect** code for this rule:
6262

@@ -80,11 +80,11 @@ function baz() {
8080

8181
This rule has an object option:
8282

83-
* `allowAsStatement` set to `true` allows the void operator to be used as a statement (Default `false`).
83+
* `allowAsStatement` set to `true` allows the `void` operator to be used as a statement (Default `false`).
8484

8585
### allowAsStatement
8686

87-
When `allowAsStatement` is set to true, the rule will not error on cases that the void operator is used as a statement, i.e. when it's not used in an expression position, like in a variable assignment or a function return.
87+
When `allowAsStatement` is set to true, the rule will not error on cases that the `void` operator is used as a statement, i.e. when it's not used in an expression position, like in a variable assignment or a function return.
8888

8989
Examples of **incorrect** code for `{ "allowAsStatement": true }`:
9090

0 commit comments

Comments
 (0)