From 4e27cff4ccfc5774a15d55e09e0e9143f1c575e0 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Wed, 29 Jan 2020 15:24:35 +0100 Subject: [PATCH] Fix #89550 --- src/vs/vscode.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 0339906165a88..d501d776f2c81 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -8747,6 +8747,7 @@ declare module 'vscode' { * When a scope is provided configuraiton confined to that scope is returned. Scope can be a resource or a language identifier or both. * * @param section A dot-separated identifier. + * @param scope A scope for which the configuration is asked for. * @return The full configuration or a subset. */ export function getConfiguration(section?: string | undefined, scope?: ConfigurationScope | null): WorkspaceConfiguration;