From 6e2d0edeada86ea3e702c1fdbcd86a215e1b099f Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Wed, 11 Jan 2023 06:27:58 -0800 Subject: [PATCH] Update src/vs/platform/terminal/common/environmentVariable.ts Co-authored-by: Megan Rogge --- src/vs/platform/terminal/common/environmentVariable.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/platform/terminal/common/environmentVariable.ts b/src/vs/platform/terminal/common/environmentVariable.ts index e1f046cfd35..fe8b083bffb 100644 --- a/src/vs/platform/terminal/common/environmentVariable.ts +++ b/src/vs/platform/terminal/common/environmentVariable.ts @@ -53,7 +53,7 @@ export interface IMergedEnvironmentVariableCollection { applyToProcessEnvironment(env: IProcessEnvironment, variableResolver?: VariableResolver): Promise; /** - * Generates a diff of this connection against another. Returns undefined if the collections are + * Generates a diff of this collection against another. Returns undefined if the collections are * the same. */ diff(other: IMergedEnvironmentVariableCollection): IMergedEnvironmentVariableCollectionDiff | undefined;