From 68c5a17c6765c52417787593e5f6e71716299d84 Mon Sep 17 00:00:00 2001 From: Leon cap Date: Thu, 5 Jun 2025 18:36:21 +0800 Subject: [PATCH] fix: correct spelling of 'underlying' in Header method comment (#4918) --- rest/handler/timeouthandler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/handler/timeouthandler.go b/rest/handler/timeouthandler.go index be9978fc2..a2e9288ce 100644 --- a/rest/handler/timeouthandler.go +++ b/rest/handler/timeouthandler.go @@ -151,7 +151,7 @@ func (tw *timeoutWriter) Flush() { flusher.Flush() } -// Header returns the underline temporary http.Header. +// Header returns the underlying temporary http.Header. func (tw *timeoutWriter) Header() http.Header { return tw.h }