Merge pull request #29648 from Dongxiugang/Dongxiugang-patch-1

Automatic merge from submit-queue

fix a wrong word in the comment
This commit is contained in:
k8s-merge-robot 2016-07-29 15:07:54 -07:00 committed by GitHub
commit 486a31bb11

View File

@ -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.