From 999ccab778d3c287567831294439dac7e71d74cc Mon Sep 17 00:00:00 2001 From: Bernhard Froehlich Date: Sat, 16 May 2020 10:44:04 +0000 Subject: [PATCH] Fix spelling --- smtp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smtp.go b/smtp.go index bce7144..c7557c3 100644 --- a/smtp.go +++ b/smtp.go @@ -473,7 +473,7 @@ func (a *loginAuth) Next(fromServer []byte, more bool) ([]byte, error) { case "Password:": return []byte(a.password), nil default: - return nil, errors.New("Unkown fromServer") + return nil, errors.New("Unknown fromServer") } } return nil, nil