From 9e1d3ed837aa954889a44780bd302c431e4b7b11 Mon Sep 17 00:00:00 2001 From: ankur22 Date: Thu, 23 Nov 2023 09:44:13 +0000 Subject: [PATCH] fixup! Add new internal method runActionOnSelector --- common/frame.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/frame.go b/common/frame.go index 0e9bb63ea..762d2e307 100644 --- a/common/frame.go +++ b/common/frame.go @@ -1979,7 +1979,7 @@ func (f *Frame) runActionOnSelector( v, err := fn(ctx, handle) if err != nil { - return false, fmt.Errorf("function called: %w", err) + return false, fmt.Errorf("calling function: %w", err) } bv, ok := v.(bool)