From 734b95a1ac9a65cec45d8f9024d53638e6a3cd2e Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Mon, 3 May 2021 22:58:53 +0300 Subject: Code review fixes --- docs/dev/lsp-extensions.md | 3 --- 1 file changed, 3 deletions(-) (limited to 'docs/dev') diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md index e2ea695f2..f0f981802 100644 --- a/docs/dev/lsp-extensions.md +++ b/docs/dev/lsp-extensions.md @@ -81,7 +81,6 @@ If this capability is set, `CodeAction` returned from the server contain an addi interface CodeAction { title: string; group?: string; - data?: string; ... } ``` @@ -102,8 +101,6 @@ The set of actions `[ { title: "foo" }, { group: "frobnicate", title: "bar" }, { Alternatively, selecting `frobnicate` could present a user with an additional menu to choose between `bar` and `baz`. -`data` field contains optional json data for deferred resolve of the action data that's slow to compute in the original request. - ### Example ```rust -- cgit v1.2.3