diff options
author | Kirill Bulatov <[email protected]> | 2021-05-03 20:58:53 +0100 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2021-05-03 21:24:36 +0100 |
commit | 734b95a1ac9a65cec45d8f9024d53638e6a3cd2e (patch) | |
tree | d83781f8de23f3183a943c7771ca86f157e20927 /docs/dev | |
parent | 90fc32937785b3f17899f14d8cb2f7b3738a9850 (diff) |
Code review fixes
Diffstat (limited to 'docs/dev')
-rw-r--r-- | docs/dev/lsp-extensions.md | 3 |
1 files changed, 0 insertions, 3 deletions
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 | |||
81 | interface CodeAction { | 81 | interface CodeAction { |
82 | title: string; | 82 | title: string; |
83 | group?: string; | 83 | group?: string; |
84 | data?: string; | ||
85 | ... | 84 | ... |
86 | } | 85 | } |
87 | ``` | 86 | ``` |
@@ -102,8 +101,6 @@ The set of actions `[ { title: "foo" }, { group: "frobnicate", title: "bar" }, { | |||
102 | 101 | ||
103 | Alternatively, selecting `frobnicate` could present a user with an additional menu to choose between `bar` and `baz`. | 102 | Alternatively, selecting `frobnicate` could present a user with an additional menu to choose between `bar` and `baz`. |
104 | 103 | ||
105 | `data` field contains optional json data for deferred resolve of the action data that's slow to compute in the original request. | ||
106 | |||
107 | ### Example | 104 | ### Example |
108 | 105 | ||
109 | ```rust | 106 | ```rust |