Fix spelling in description of security.restrictUNCAccess setting (#182842)

This commit is contained in:
John Murray
2023-05-19 09:46:45 +01:00
committed by GitHub
parent 2d416df5f0
commit b930d45dfa

View File

@@ -708,7 +708,7 @@ const registry = Registry.as<IConfigurationRegistry>(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
}