Former-commit-id: 6ac3649296694e4c5462f97f645ace604b6bc4bf
This commit is contained in:
Gerasimos (Makis) Maropoulos 2018-10-16 01:40:17 +03:00
parent 8f53f7c399
commit c0728deff9

View File

@ -13,7 +13,7 @@ type (
// ParamEvaluator is the signature for param type evaluator.
// It accepts the param's value as string and returns
// the <T> 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)
)