diff options
author | Miguel Mota <miguelmota2@gmail.com> | 2018-01-26 19:33:27 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-01-26 19:33:27 +0800 |
commit | 4dd0727c393fcade1a6835db2f753f0a365ed073 (patch) | |
tree | 0389e02aabf39320f08963fe930a3da2cc8a5a83 /accounts/errors.go | |
parent | 8f6990dc7dd92f74802e52325769e35fc6e906c2 (diff) | |
download | dexon-4dd0727c393fcade1a6835db2f753f0a365ed073.tar.gz dexon-4dd0727c393fcade1a6835db2f753f0a365ed073.tar.zst dexon-4dd0727c393fcade1a6835db2f753f0a365ed073.zip |
accounts: fix comment typo (#15977)
Diffstat (limited to 'accounts/errors.go')
-rw-r--r-- | accounts/errors.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/errors.go b/accounts/errors.go index 64da8821c..40b21ed17 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) } |