aezeed/errors: add missing space in error message

This commit is contained in:
parth 2018-06-19 03:13:21 +05:30 committed by Olaoluwa Osuntokun
parent 05d1d4e845
commit 8c5543d701

@ -14,7 +14,7 @@ var (
// ErrIncorrectMnemonic is returned if we detect that the checksum of // ErrIncorrectMnemonic is returned if we detect that the checksum of
// the specified mnemonic doesn't match. This indicates the user input // the specified mnemonic doesn't match. This indicates the user input
// the wrong mnemonic. // the wrong mnemonic.
ErrIncorrectMnemonic = fmt.Errorf("mnemonic phrase checksum doesn't" + ErrIncorrectMnemonic = fmt.Errorf("mnemonic phrase checksum doesn't " +
"match") "match")
) )