From 64c3dae4d7d0c22c6119bd07bd9d37ec37c783bf Mon Sep 17 00:00:00 2001 From: Matt Jaffee Date: Tue, 10 Jul 2018 16:40:45 -0500 Subject: [PATCH] fix error message handler->holder --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index f5e1593ef..db577fb86 100644 --- a/server.go +++ b/server.go @@ -386,7 +386,7 @@ func (s *Server) Close() error { // some way to combine all the errors, but probably not important enough to // warrant the extra complexity. if errh != nil { - return errors.Wrap(errh, "closing handler") + return errors.Wrap(errh, "closing holder") } else if errt != nil { return errors.Wrap(errt, "closing translateFile") }