3943: vscode: fix indent r=matklad a=Veetaha



Co-authored-by: veetaha <veetaha2@gmail.com>
This commit is contained in:
bors[bot]
2020-04-11 12:49:03 +00:00
committed by GitHub
+5 -5
View File
@@ -229,13 +229,13 @@ interface InlaysDecorations {
}
interface RustSourceFile {
/*
* Source of the token to cancel in-flight inlay hints request if any.
*/
/**
* Source of the token to cancel in-flight inlay hints request if any.
*/
inlaysRequest: null | vscode.CancellationTokenSource;
/**
* Last applied decorations.
*/
* Last applied decorations.
*/
cachedDecorations: null | InlaysDecorations;
document: RustDocument;