Typo in comments

Typo changing `implents` to `implements`
This commit is contained in:
Cody Moore 2016-10-05 11:17:03 -07:00 committed by GitHub
parent d53eb99165
commit 6c2c80959b

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 {