accounts: fix comment typo

This commit is contained in:
Miguel Mota 2018-01-25 20:14:36 -08:00
parent 8f6990dc7d
commit 58d7ff9104

View file

@ -62,7 +62,7 @@ func NewAuthNeededError(needed string) error {
} }
} }
// Error implements the standard error interfacel. // Error implements the standard error interface.
func (err *AuthNeededError) Error() string { func (err *AuthNeededError) Error() string {
return fmt.Sprintf("authentication needed: %s", err.Needed) return fmt.Sprintf("authentication needed: %s", err.Needed)
} }