From 58d7ff9104836adb8298729dd50c9115a64b44f5 Mon Sep 17 00:00:00 2001 From: Miguel Mota Date: Thu, 25 Jan 2018 20:14:36 -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 64da8821c80d..40b21ed179c0 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) }