Skip to content

Commit

Permalink
[Docs] Can't return legacy message from v2 provider
Browse files Browse the repository at this point in the history
Closes #1572
  • Loading branch information
lierdakil committed Feb 21, 2018
1 parent 7d7e526 commit 005c16e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/types/standard-linter-v2.md
Expand Up @@ -21,9 +21,9 @@ type Linter = {
lint(
textEditor: TextEditor
):
| Array<Message | MessageLegacy>
| Array<Message>
| null
| Promise<Array<Message | MessageLegacy> | null>
| Promise<Array<Message> | null>
};
```

Expand Down

0 comments on commit 005c16e

Please sign in to comment.