From f696c0e8714e9614571427a6c87e73a04cf52352 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Mon, 31 Mar 2025 18:53:06 +0800 Subject: [PATCH] fix comment --- httpclient/client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httpclient/client.go b/httpclient/client.go index c810fde..fbaacab 100644 --- a/httpclient/client.go +++ b/httpclient/client.go @@ -131,7 +131,7 @@ func (hc *HttpClient) OnResponseBusinessError(handlerList ...define.HttpBusiness hc.httpBusinessErrorHandler = append(hc.httpBusinessErrorHandler, handlerList...) } -// OnRequestFinish 请求完成时间 +// OnRequestFinish 请求完成事件 // // Author : go_developer@163.com<白茶清欢> // @@ -151,7 +151,7 @@ func (hc *HttpClient) getRequestValidateMiddleware() resty.RequestMiddleware { } } -// getResponseValidateMiddleware 获取相应数据验证的middleware +// getResponseValidateMiddleware 获取响应数据验证的middleware // // Author : go_developer@163.com<白茶清欢> //