diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-04-11 13:49:03 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-11 13:49:03 +0100 |
commit | 0679d8cbe7acc5221d985e6d4187d6df293bd9d5 (patch) | |
tree | 8bbae6bcb5798cb06db65449f19200744bd68ce7 /editors | |
parent | 8bd14a34834919f2e8f329ef1eaf0b15ad4d9680 (diff) | |
parent | f778242a37aedd0f0f9aefe055b5d0f4d99f6765 (diff) |
Merge #3943
3943: vscode: fix indent r=matklad a=Veetaha
Co-authored-by: veetaha <[email protected]>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/inlay_hints.ts | 10 |
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 | ||
231 | interface RustSourceFile { | 231 | interface 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; |