fix error message handler->holder

This commit is contained in:
Matt Jaffee 2018-07-10 16:40:45 -05:00
parent c2c1910671
commit 64c3dae4d7
No known key found for this signature in database
GPG key ID: 08A3DFFF987B11BF

View file

@ -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")
}