From 64a12c939c17111907b28725eda4ef78ee291c0c Mon Sep 17 00:00:00 2001 From: Alan Bernstein Date: Tue, 16 May 2017 17:56:16 -0500 Subject: [PATCH] Fix typo in error message --- pql/ast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pql/ast.go b/pql/ast.go index cf404ad12..13a989b03 100644 --- a/pql/ast.go +++ b/pql/ast.go @@ -72,7 +72,7 @@ func (c *Call) UintArg(key string) (uint64, bool, error) { case uint64: return tval, true, nil default: - return 0, true, fmt.Errorf("could not convert %v of type %T to uint64 in Calll.UintArg", tval, tval) + return 0, true, fmt.Errorf("could not convert %v of type %T to uint64 in Call.UintArg", tval, tval) } }