From d45b7b2ddc1541ae402471a1ccdbefa640a1511b Mon Sep 17 00:00:00 2001 From: Colin Hebert Date: Sat, 30 Jan 2016 10:32:18 +1100 Subject: [PATCH] Fix name from strip to trim --- config/interpolate_funcs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/interpolate_funcs.go b/config/interpolate_funcs.go index 1757da79ae..5d5e6f6e2e 100644 --- a/config/interpolate_funcs.go +++ b/config/interpolate_funcs.go @@ -41,7 +41,7 @@ func Funcs() map[string]ast.Function { "split": interpolationFuncSplit(), "sha1": interpolationFuncSha1(), "sha256": interpolationFuncSha256(), - "strip": interpolationFuncStrip(), + "trim": interpolationFuncTrim(), "base64encode": interpolationFuncBase64Encode(), "base64decode": interpolationFuncBase64Decode(), "upper": interpolationFuncUpper(),