Fix some typos in comments and strings

Most of them were found and fixed by codespell.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2016-02-22 20:22:20 +01:00
parent 049dda3ee7
commit 8cb9b57bc2
4 changed files with 6 additions and 6 deletions

View file

@ -11,7 +11,7 @@ type statusError struct {
err string
}
// Error returns a formated string for this error type
// Error returns a formatted string for this error type
func (e *statusError) Error() string {
return fmt.Sprintf("%s: %v", e.method, e.err)
}