From 5e2c3da092353aa3a41738b70e098787356a2b9d Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Tue, 25 Nov 2025 07:10:45 -0600 Subject: [PATCH] fix variable name --- internal/processing/debug-expr.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/processing/debug-expr.go b/internal/processing/debug-expr.go index adf88c6..b1a395f 100644 --- a/internal/processing/debug-expr.go +++ b/internal/processing/debug-expr.go @@ -14,9 +14,9 @@ type DebugExpr struct { Program *vm.Program } -func (dl *DebugExpr) Process(ctx context.Context, payload any) (any, error) { +func (de *DebugExpr) Process(ctx context.Context, payload any) (any, error) { - output, err := expr.Run(dl.Program, payload) + output, err := expr.Run(de.Program, payload) if err != nil { return nil, err } @@ -24,8 +24,8 @@ func (dl *DebugExpr) Process(ctx context.Context, payload any) (any, error) { return output, nil } -func (dl *DebugExpr) Type() string { - return dl.config.Type +func (de *DebugExpr) Type() string { + return de.config.Type } func init() {