From 361640fd220c536b17b1503b623e8d97c2786fe7 Mon Sep 17 00:00:00 2001 From: Shivanshu Raj Shrivastava Date: Thu, 29 May 2025 16:19:19 +0530 Subject: [PATCH] chore: fix typo Signed-off-by: Shivanshu Raj Shrivastava --- pkg/modules/tracefunnel/impltracefunnel/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/modules/tracefunnel/impltracefunnel/store.go b/pkg/modules/tracefunnel/impltracefunnel/store.go index f0c2b119b5..7ece9c96ed 100644 --- a/pkg/modules/tracefunnel/impltracefunnel/store.go +++ b/pkg/modules/tracefunnel/impltracefunnel/store.go @@ -28,7 +28,7 @@ func (store *store) Create(ctx context.Context, funnel *traceFunnels.StorableFun Where("name = ? AND org_id = ?", funnel.Name, funnel.OrgID.String()). Exists(ctx) if err != nil { - return errors.Wrapf(err, errors.TypeInternal, errors.CodeInternal, "failed to check for existing funnelr") + return errors.Wrapf(err, errors.TypeInternal, errors.CodeInternal, "failed to check for existing funnel") } if exists { return store.sqlstore.WrapAlreadyExistsErrf(nil, traceFunnels.ErrFunnelAlreadyExists, "a funnel with name '%s' already exists in this organization", funnel.Name)