Skip to content

Commit

Permalink
docs(eslint-plugin): fix typo in prefer-readonly-parameter-types (#4997)
Browse files Browse the repository at this point in the history
[docs] fix typo in prefer-readonly-parameter-types
  • Loading branch information
neilbryson committed May 17, 2022
1 parent f256357 commit e91a4a1
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -191,7 +191,7 @@ Examples of code for this rule with `{ignoreInferredTypes: true}`:
```ts
import { acceptsCallback, CallbackOptions } from 'external-dependency';

acceceptsCallback((options: CallbackOptions) => {});
acceptsCallback((options: CallbackOptions) => {});
```

<details>
Expand All @@ -214,7 +214,7 @@ export const acceptsCallback: AcceptsCallback;
```ts
import { acceptsCallback } from 'external-dependency';

acceceptsCallback(options => {});
acceptsCallback(options => {});
```

<details>
Expand Down

0 comments on commit e91a4a1

Please sign in to comment.