From 418b9c1ca223c081148bb5e84f2e9d5328e3dbb9 Mon Sep 17 00:00:00 2001 From: DongXiugang Date: Wed, 27 Jul 2016 09:13:34 +0800 Subject: [PATCH] fix a wrong word in the comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the wrong word in this sentence "If msg is empty, a suitable default message with be sent." “with” change to "will". --- pkg/apiserver/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/apiserver/handlers.go b/pkg/apiserver/handlers.go index 4f593127361..8d465fcf77f 100644 --- a/pkg/apiserver/handlers.go +++ b/pkg/apiserver/handlers.go @@ -168,7 +168,7 @@ func RecoverPanics(handler http.Handler) http.Handler { // determined by timeoutFunc. The new http.Handler calls h.ServeHTTP to handle // each request, but if a call runs for longer than its time limit, the // handler responds with a 503 Service Unavailable error and the message -// provided. (If msg is empty, a suitable default message with be sent.) After +// provided. (If msg is empty, a suitable default message will be sent.) After // the handler times out, writes by h to its http.ResponseWriter will return // http.ErrHandlerTimeout. If timeoutFunc returns a nil timeout channel, no // timeout will be enforced.