From c0728deff97bb29d485cf9b03342ac5bdc0c1619 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Tue, 16 Oct 2018 01:40:17 +0300 Subject: [PATCH] typo fix Former-commit-id: 6ac3649296694e4c5462f97f645ace604b6bc4bf --- macro/macro.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macro/macro.go b/macro/macro.go index 8a656e2c..c4c55704 100644 --- a/macro/macro.go +++ b/macro/macro.go @@ -13,7 +13,7 @@ type ( // ParamEvaluator is the signature for param type evaluator. // It accepts the param's value as string and returns // the value (which its type is used for the input argument of the parameter functions, if any) - // and a true value for passed, otherwise nil and false shoudl be returned. + // and a true value for passed, otherwise nil and false should be returned. ParamEvaluator func(paramValue string) (interface{}, bool) )