Skip to content

Commit 62dfcc6

Browse files
authored
docs(eslint-plugin): [typedef] fix typo (#3243)
1 parent 329ef02 commit 62dfcc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/eslint-plugin/docs/rules/typedef.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const mapper = {
114114
Examples of **correct** code with `{ "arrowParameter": true }`:
115115

116116
```ts
117-
const logsSize = (size: number) => console.log(text);
117+
const logsSize = (size: number) => console.log(size);
118118

119119
['hello', 'world'].map((text: string) => text.length);
120120

0 commit comments

Comments
 (0)