Skip to content

Commit 9f9b9be

Browse files
committed
Fix typo (microsoft#93595)
1 parent d8db841 commit 9f9b9be

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/platform/environment/common/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export interface ParsedArgs {
8787
'nolazy'?: boolean;
8888
'force-device-scale-factor'?: string;
8989
'force-renderer-accessibility'?: boolean;
90-
'ignore-certificate-error'?: boolean;
90+
'ignore-certificate-errors'?: boolean;
9191
'allow-insecure-localhost'?: boolean;
9292
}
9393

src/vs/platform/environment/node/argv.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export const OPTIONS: OptionDescriptions<Required<ParsedArgs>> = {
119119
'nolazy': { type: 'boolean' }, // node inspect
120120
'force-device-scale-factor': { type: 'string' },
121121
'force-renderer-accessibility': { type: 'boolean' },
122-
'ignore-certificate-error': { type: 'boolean' },
122+
'ignore-certificate-errors': { type: 'boolean' },
123123
'allow-insecure-localhost': { type: 'boolean' },
124124
'_urls': { type: 'string[]' },
125125

0 commit comments

Comments
 (0)