Fix typo: enviromentVariables → environmentVariables (#281378)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: rzhao271 <7199958+rzhao271@users.noreply.github.com>
This commit is contained in:
Copilot
2025-12-09 20:07:25 +00:00
committed by GitHub
parent e5e11befa8
commit f9e3a710d8

View File

@@ -1,4 +1,4 @@
const enviromentVariables: Fig.Generator = {
const environmentVariables: Fig.Generator = {
custom: async (_tokens, _executeCommand, generatorContext) => {
return Object.values(generatorContext.environmentVariables).map(
(envVar) => ({
@@ -31,7 +31,7 @@ const completionSpec: Fig.Spec = {
description: "Remove variable from the environment",
args: {
name: "name",
generators: enviromentVariables,
generators: environmentVariables,
},
},
{