Skip to content

Commit

Permalink
docs(eslint-plugin): [typedef] fix typo (#3243)
Browse files Browse the repository at this point in the history
  • Loading branch information
rvitaliy committed Mar 29, 2021
1 parent 329ef02 commit 62dfcc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/docs/rules/typedef.md
Expand Up @@ -114,7 +114,7 @@ const mapper = {
Examples of **correct** code with `{ "arrowParameter": true }`:

```ts
const logsSize = (size: number) => console.log(text);
const logsSize = (size: number) => console.log(size);

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

Expand Down

0 comments on commit 62dfcc6

Please sign in to comment.