From 982687228757d82b71d5b0161fcdd4c61081c2a6 Mon Sep 17 00:00:00 2001 From: Florent AIDE Date: Mon, 23 May 2016 12:27:08 +0200 Subject: [PATCH] Fixed typo in docstring --- hook/hook.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hook/hook.go b/hook/hook.go index ac9d3c9..d0115e8 100644 --- a/hook/hook.go +++ b/hook/hook.go @@ -369,7 +369,7 @@ func (h *Hook) ExtractCommandArgumentsForEnv(headers, query, payload *map[string // first try to use the EnvName if specified args = append(args, EnvNamespace+h.PassEnvironmentToCommand[i].EnvName+"="+arg) } else { - // then fallbask on the name + // then fallback on the name args = append(args, EnvNamespace+h.PassEnvironmentToCommand[i].Name+"="+arg) } } else {