From 68cf8f8407ba46c1dc80cfc809684b1db6c822ba Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Tue, 4 Dec 2018 16:23:13 +0100 Subject: [PATCH] ...and in the protocol --- indexFormat/protocol.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/indexFormat/protocol.ts b/indexFormat/protocol.ts index b8801c1..94af967 100644 --- a/indexFormat/protocol.ts +++ b/indexFormat/protocol.ts @@ -578,8 +578,7 @@ export interface HoverResult extends V { label: 'hoverResult'; /** - * The hover result. This is the normal LSP hover result with the - * addition of allowing '${startRange}' as the range value. + * The hover result. This is the normal LSP hover result. */ result: { /** @@ -588,9 +587,9 @@ export interface HoverResult extends V { contents: lsp.MarkupContent | lsp.MarkedString | lsp.MarkedString[]; /** - * The range or `${startRange}` + * The optional range. */ - range?: lsp.Range | '${startRange}'; + range?: lsp.Range; }; }