Skip to content

Commit b75b32c

Browse files
authored
docs: add missing backticks to no-new-func (#19219)
1 parent a7700bc commit b75b32c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/rules/no-new-func.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ var x = Function.apply(null, ["a", "b", "return a + b"]);
1414
var x = Function.bind(null, "a", "b", "return a + b")();
1515
```
1616

17-
This is considered by many to be a bad practice due to the difficulty in debugging and reading these types of functions. In addition, Content-Security-Policy (CSP) directives may disallow the use of eval() and similar methods for creating code from strings.
17+
This is considered by many to be a bad practice due to the difficulty in debugging and reading these types of functions. In addition, Content-Security-Policy (CSP) directives may disallow the use of `eval()` and similar methods for creating code from strings.
1818

1919
## Rule Details
2020

21-
This error is raised to highlight the use of a bad practice. By passing a string to the Function constructor, you are requiring the engine to parse that string much in the way it has to when you call the `eval` function.
21+
This error is raised to highlight the use of a bad practice. By passing a string to the `Function` constructor, you are requiring the engine to parse that string much in the way it has to when you call the `eval` function.
2222

2323
Examples of **incorrect** code for this rule:
2424

0 commit comments

Comments
 (0)