From f4f14c51c03f3bd0b22033afea8cd140dddc8548 Mon Sep 17 00:00:00 2001 From: Bill Q Date: Mon, 26 Jun 2017 16:12:06 +0300 Subject: [PATCH] fix misspell on eval.go:825 --- eval.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eval.go b/eval.go index 7683f4e..e689c31 100644 --- a/eval.go +++ b/eval.go @@ -822,7 +822,7 @@ func (v *evalVisitor) VisitBlock(node *ast.BlockStatement) interface{} { expr := node.Expression.Accept(v) if v.isHelperCall(node.Expression) || v.wasFuncCall(node.Expression) { - // it is the responsability of the helper/function to evaluate block + // it is the responsibility of the helper/function to evaluate block result = expr } else { val := reflect.ValueOf(expr)