Merge pull request #541 from dotCipher/patch-1

Typo in comments
This commit is contained in:
Jesse Szwedko 2016-10-05 20:53:53 -07:00 committed by GitHub
commit 55f715e28c

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 {