diff --git a/extensions/ql-vscode/src/language-support/contextual/cached-operation.ts b/extensions/ql-vscode/src/language-support/contextual/cached-operation.ts index c8a0b6bed..a50e7d03b 100644 --- a/extensions/ql-vscode/src/language-support/contextual/cached-operation.ts +++ b/extensions/ql-vscode/src/language-support/contextual/cached-operation.ts @@ -1,7 +1,7 @@ import { asError } from "../../common/helpers-pure"; /** - * A cached mapping from args of type [string, S] to a value of type Promise. + * A cached mapping from strings to a value of type U. */ export class CachedOperation { private readonly operation: (t: string, ...args: S) => Promise;