diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index 6a8bd942e1..da74f03d2d 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts @@ -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;