aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-04-11 13:49:03 +0100
committerGitHub <[email protected]>2020-04-11 13:49:03 +0100
commit0679d8cbe7acc5221d985e6d4187d6df293bd9d5 (patch)
tree8bbae6bcb5798cb06db65449f19200744bd68ce7 /editors/code
parent8bd14a34834919f2e8f329ef1eaf0b15ad4d9680 (diff)
parentf778242a37aedd0f0f9aefe055b5d0f4d99f6765 (diff)
Merge #3943
3943: vscode: fix indent r=matklad a=Veetaha Co-authored-by: veetaha <[email protected]>
Diffstat (limited to 'editors/code')
-rw-r--r--editors/code/src/inlay_hints.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts
index 6a8bd942e..da74f03d2 100644
--- a/editors/code/src/inlay_hints.ts
+++ b/editors/code/src/inlay_hints.ts
@@ -229,13 +229,13 @@ interface InlaysDecorations {
229} 229}
230 230
231interface RustSourceFile { 231interface RustSourceFile {
232 /* 232 /**
233 * Source of the token to cancel in-flight inlay hints request if any. 233 * Source of the token to cancel in-flight inlay hints request if any.
234 */ 234 */
235 inlaysRequest: null | vscode.CancellationTokenSource; 235 inlaysRequest: null | vscode.CancellationTokenSource;
236 /** 236 /**
237 * Last applied decorations. 237 * Last applied decorations.
238 */ 238 */
239 cachedDecorations: null | InlaysDecorations; 239 cachedDecorations: null | InlaysDecorations;
240 240
241 document: RustDocument; 241 document: RustDocument;