From 6294556ee2ad9a2f3a3f75c0378163db598daf7d Mon Sep 17 00:00:00 2001 From: Miguel Mota Date: Thu, 25 Jan 2018 19:38:17 -0800 Subject: [PATCH] accounts: fix comment typo --- accounts/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/errors.go b/accounts/errors.go index 64da8821c8..40b21ed179 100644 --- a/accounts/errors.go +++ b/accounts/errors.go @@ -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 { return fmt.Sprintf("authentication needed: %s", err.Needed) }