From bbbfb754fd2baa45c4246a5b3febddbacf3c8ff2 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Tue, 25 Nov 2025 07:21:48 -0600 Subject: [PATCH] fix error message --- internal/processing/debug-expr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/processing/debug-expr.go b/internal/processing/debug-expr.go index b1a395f..d5ed3b8 100644 --- a/internal/processing/debug-expr.go +++ b/internal/processing/debug-expr.go @@ -43,7 +43,7 @@ func init() { expressionString, ok := expression.(string) if !ok { - return nil, fmt.Errorf("debug.expr url must be a string") + return nil, fmt.Errorf("debug.expr expression must be a string") } program, err := expr.Compile(expressionString)