diff --git a/src/vs/workbench/contrib/terminal/browser/environmentVariableInfo.ts b/src/vs/workbench/contrib/terminal/browser/environmentVariableInfo.ts index c2edd839df767601b5152209feac3020219fb396..2685f8adeaf5c6a83fc1bf9e837f0fd6921985ee 100644 --- a/src/vs/workbench/contrib/terminal/browser/environmentVariableInfo.ts +++ b/src/vs/workbench/contrib/terminal/browser/environmentVariableInfo.ts @@ -45,7 +45,7 @@ export class EnvironmentVariableInfoStale implements IEnvironmentVariableInfo { }); this._diff.changed.forEach((mutators, variable) => { mutators.forEach(mutator => { - summary.push(`- "${mutatorTypeLabel(mutator.type, mutator.value, variable)}"`); + summary.push(`- ${mutatorTypeLabel(mutator.type, mutator.value, variable)}`); }); }); this._diff.removed.forEach((mutators, variable) => {