From 005c16e1c8ec0048d514ff4c251b22bd4e2645a7 Mon Sep 17 00:00:00 2001 From: Nikolay Yakimov Date: Wed, 21 Feb 2018 03:39:31 +0300 Subject: [PATCH] [Docs] Can't return legacy message from v2 provider Closes #1572 --- docs/types/standard-linter-v2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/types/standard-linter-v2.md b/docs/types/standard-linter-v2.md index 157d200a..c5668c47 100644 --- a/docs/types/standard-linter-v2.md +++ b/docs/types/standard-linter-v2.md @@ -21,9 +21,9 @@ type Linter = { lint( textEditor: TextEditor ): - | Array + | Array | null - | Promise | null> + | Promise | null> }; ```