Fixed typo in docstring

This commit is contained in:
Florent AIDE 2016-05-23 12:27:08 +02:00
parent 673e84a7ea
commit 9826872287

View File

@ -369,7 +369,7 @@ func (h *Hook) ExtractCommandArgumentsForEnv(headers, query, payload *map[string
// first try to use the EnvName if specified // first try to use the EnvName if specified
args = append(args, EnvNamespace+h.PassEnvironmentToCommand[i].EnvName+"="+arg) args = append(args, EnvNamespace+h.PassEnvironmentToCommand[i].EnvName+"="+arg)
} else { } else {
// then fallbask on the name // then fallback on the name
args = append(args, EnvNamespace+h.PassEnvironmentToCommand[i].Name+"="+arg) args = append(args, EnvNamespace+h.PassEnvironmentToCommand[i].Name+"="+arg)
} }
} else { } else {