about summary refs log tree commit diff
path: root/editors/code/src/lsp_ext.ts
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@dend.ro>2022-02-09 19:13:17 +0200
committerLaurențiu Nicola <lnicola@dend.ro>2022-03-04 07:45:51 +0200
commit2ae8248ceec0fbf55c00c3b9e46ea319203d1df9 (patch)
tree8db5db31092a79400e1edee8fa816e42d34bd022 /editors/code/src/lsp_ext.ts
parent0f396d670bc1593b6688d5cf7595f1e821c8323d (diff)
downloadrust-2ae8248ceec0fbf55c00c3b9e46ea319203d1df9.tar.gz
rust-2ae8248ceec0fbf55c00c3b9e46ea319203d1df9.zip
Add log messages
Diffstat (limited to 'editors/code/src/lsp_ext.ts')
-rw-r--r--editors/code/src/lsp_ext.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts
index 03cd15200ba..bdb6a4ca164 100644
--- a/editors/code/src/lsp_ext.ts
+++ b/editors/code/src/lsp_ext.ts
@@ -102,7 +102,7 @@ export const relatedTests = new lc.RequestType<lc.TextDocumentPositionParams, Te
 
 export interface InlayHintsParams {
     textDocument: lc.TextDocumentIdentifier;
-    range: lc.Range,
+    range: lc.Range;
 }
 export const inlayHints = new lc.RequestType<InlayHintsParams, InlayHint[], void>("rust-analyzer/inlayHints");