Skip to content

Commit 09f3bd5

Browse files
authored
Fix typo in configurationEditingMain.ts (microsoft#203970)
Removed the extra `an` in `The path where an an extension is installed`.
1 parent 65685b1 commit 09f3bd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/configuration-editing/src/configurationEditingMain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function registerVariableCompletions(pattern: string): vscode.Disposable {
6767
{ label: 'fileBasenameNoExtension', detail: vscode.l10n.t("The current opened file's basename with no file extension") },
6868
{ label: 'defaultBuildTask', detail: vscode.l10n.t("The name of the default build task. If there is not a single default build task then a quick pick is shown to choose the build task.") },
6969
{ label: 'pathSeparator', detail: vscode.l10n.t("The character used by the operating system to separate components in file paths. Is also aliased to '/'.") },
70-
{ label: 'extensionInstallFolder', detail: vscode.l10n.t("The path where an an extension is installed."), param: 'publisher.extension' },
70+
{ label: 'extensionInstallFolder', detail: vscode.l10n.t("The path where an extension is installed."), param: 'publisher.extension' },
7171
].map(variable => ({
7272
label: `\${${variable.label}}`,
7373
range,

0 commit comments

Comments
 (0)