diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 77b0bf7efda72f83dd64e47e374e1320d516d3fd..ee6ef5dcd0b8907935b8de93b2c2dae8ef2fb724 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -3857,10 +3857,14 @@ declare module 'vscode' { provideTasks(token?: CancellationToken): ProviderResult; /** - * Resolves a task the has no execution set. + * Resolves a task that has no [`execution`](#Task.execution) set. Tasks are + * often created from information found in the `task.json`-file. Such tasks miss + * the information on how to execute them and a task provider must fill in + * the missing information in the `resolveTask`-method. + * * @param task The task to resolve. * @param token A cancellation token. - * @return the resolved task + * @return The resolved task */ resolveTask(task: Task, token?: CancellationToken): ProviderResult; }