From b930d45dfaf4cdbef9a9fd68564a5cda4a1fa26e Mon Sep 17 00:00:00 2001 From: John Murray Date: Fri, 19 May 2023 09:46:45 +0100 Subject: [PATCH] Fix spelling in description of `security.restrictUNCAccess` setting (#182842) --- src/vs/workbench/browser/workbench.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/browser/workbench.contribution.ts b/src/vs/workbench/browser/workbench.contribution.ts index 2dd6519071f72..73941e9c33167 100644 --- a/src/vs/workbench/browser/workbench.contribution.ts +++ b/src/vs/workbench/browser/workbench.contribution.ts @@ -708,7 +708,7 @@ const registry = Registry.as(ConfigurationExtensions.Con 'security.restrictUNCAccess': { 'type': 'boolean', 'default': true, - 'markdownDescription': localize('security.restrictUNCAccess', 'If enabled, only allowes access to UNC host names that are allowed by the `#security.allowedUNCHosts#` setting or after user confirmation. Find out more about this setting at https://aka.ms/vscode-windows-unc.'), + 'markdownDescription': localize('security.restrictUNCAccess', 'If enabled, only allows access to UNC host names that are allowed by the `#security.allowedUNCHosts#` setting or after user confirmation. Find out more about this setting at https://aka.ms/vscode-windows-unc.'), 'included': isWeb ? true /* web maybe connected to a windows machine */ : isWindows, 'scope': ConfigurationScope.MACHINE }