From 03f1bacfdaad97cf39d4ec2200fbe32645ddd9aa Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Fri, 4 Oct 2024 14:45:39 +0900 Subject: [PATCH] chore(webhooks): update webhook.go udpate -> update --- backend/handler/webhook.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/handler/webhook.go b/backend/handler/webhook.go index 0cd17037c..dcfe20d11 100644 --- a/backend/handler/webhook.go +++ b/backend/handler/webhook.go @@ -234,7 +234,7 @@ func (w *webhookHandler) Update(ctx echo.Context) error { err = persister.Update(*webhook) if err != nil { ctx.Logger().Error(err) - return fmt.Errorf("unable to udpate webhook: %w", err) + return fmt.Errorf("unable to update webhook: %w", err) } return ctx.JSON(http.StatusOK, webhook)