Skip to content

Commit bf2a4f6

Browse files
docs: add missing backticks to func-style (#19227)
* docs: add missing backticks to `func-style` * docs: update docs/src/rules/func-style.md Co-authored-by: Milos Djermanovic <[email protected]> --------- Co-authored-by: Milos Djermanovic <[email protected]>
1 parent 4b3132c commit bf2a4f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/rules/func-style.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var doSomething = function() {
4444
};
4545
```
4646

47-
In this case, `doSomething()` is undefined at the time of invocation and so causes a runtime error.
47+
In this case, `doSomething` is `undefined` at the time of invocation and so causes a runtime error.
4848

4949
Due to these different behaviors, it is common to have guidelines as to which style of function should be used. There is really no correct or incorrect choice here, it is just a preference.
5050

0 commit comments

Comments
 (0)