diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index e78763f49fc29ab7d24c1e7d6170280289e7b291..10fb6183c6e18f402f508ce4989a8ec487e67e42 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -4581,7 +4581,8 @@ declare module 'vscode' { export function showQuickPick(items: T[] | Thenable, options?: QuickPickOptions, token?: CancellationToken): Thenable; /** - * Shows a file open dialog to the user. + * Shows a file open dialog to the user which allows to select a file + * for opening-purposes. * * @param options Options that control the dialog. * @returns A promise that resolves to the selected resources or `undefined`. @@ -4589,7 +4590,8 @@ declare module 'vscode' { export function showOpenDialog(options: OpenDialogOptions): Thenable; /** - * Shows a file save dialog to the user. + * Shows a file save dialog to the user which allows to select a file + * for saving-purposes. * * @param options Options that control the dialog. * @returns A promise that resolves to the selected resource or `undefined`.