From b12f646a74f5cc4faa4c296c4583b53938ce7f30 Mon Sep 17 00:00:00 2001 From: tison Date: Sat, 2 May 2026 01:51:23 +0800 Subject: [PATCH] Update httperror.go --- httperror.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httperror.go b/httperror.go index e0c62c46..8cb10c8e 100644 --- a/httperror.go +++ b/httperror.go @@ -129,7 +129,7 @@ func (he *HTTPError) Error() string { } // Wrap returns a new HTTPError with given errors wrapped inside -func (he *HTTPError) Wrap(err error) error { +func (he HTTPError) Wrap(err error) error { return &HTTPError{ Code: he.Code, Message: he.Message,