From 7e6648f2f424cb745168149591d21fdedeb4db33 Mon Sep 17 00:00:00 2001 From: Aleksandr Matsko <90016901+AleksandrMatsko@users.noreply.github.com> Date: Fri, 29 Nov 2024 13:02:09 +0700 Subject: [PATCH] docs: change comment Co-authored-by: Tetrergeru --- api/handler/triggers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/handler/triggers.go b/api/handler/triggers.go index 539594898..d13e19bfb 100644 --- a/api/handler/triggers.go +++ b/api/handler/triggers.go @@ -249,7 +249,7 @@ func triggerCheck(writer http.ResponseWriter, request *http.Request) { case expression.ErrInvalidExpression, local.ErrParseExpr, local.ErrEvalExpr, local.ErrUnknownFunction: // TODO: move ErrInvalidExpression to separate case - // Errors above are skipped because if there are error from local source then it will be caught in + // Errors above are skipped because if there is an error from local source then it will be caught in // dto.TargetVerification and will be explained in detail. case remote.ErrRemoteUnavailable: errRsp := api.ErrorRemoteServerUnavailable(err)