vscode: fix indent

This commit is contained in:
veetaha 2020-04-11 15:36:16 +03:00
parent 0ecdba20df
commit f778242a37

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;