Skip to content

Commit e2bb429

Browse files
authored
docs: add missing backticks to complexity.md (#19214)
1 parent 045d716 commit e2bb429

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/rules/complexity.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function a(x) {
3636

3737
This rule is aimed at reducing code complexity by capping the amount of cyclomatic complexity allowed in a program. As such, it will warn when the cyclomatic complexity crosses the configured threshold (default is `20`).
3838

39-
Examples of **incorrect** code for a maximum of 2:
39+
Examples of **incorrect** code for a maximum of `2`:
4040

4141
::: incorrect
4242

@@ -69,7 +69,7 @@ function d(a) {
6969
7070
:::
7171
72-
Examples of **correct** code for a maximum of 2:
72+
Examples of **correct** code for a maximum of `2`:
7373
7474
::: correct
7575
@@ -93,7 +93,7 @@ function b() {
9393
9494
Class field initializers and class static blocks are implicit functions. Therefore, their complexity is calculated separately for each initializer and each static block, and it doesn't contribute to the complexity of the enclosing code.
9595
96-
Examples of additional **incorrect** code for a maximum of 2:
96+
Examples of additional **incorrect** code for a maximum of `2`:
9797
9898
::: incorrect
9999
@@ -115,7 +115,7 @@ class D { // this static block has complexity = 3
115115
116116
:::
117117
118-
Examples of additional **correct** code for a maximum of 2:
118+
Examples of additional **correct** code for a maximum of `2`:
119119
120120
::: correct
121121

0 commit comments

Comments
 (0)