Merge branch 'master' into fix/handle-multierror

This commit is contained in:
Jesse Szwedko
2016-11-12 12:46:57 -08:00
committed by GitHub
8 changed files with 191 additions and 64 deletions

View File

@@ -24,7 +24,7 @@ func NewMultiError(err ...error) MultiError {
return MultiError{Errors: err}
}
// Error implents the error interface.
// Error implements the error interface.
func (m MultiError) Error() string {
errs := make([]string, len(m.Errors))
for i, err := range m.Errors {