From 810babb379a95657ca045b2de6423d0fc0036804 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sat, 12 Mar 2022 20:07:20 +0100 Subject: [PATCH] Typos --- auth/login.go | 2 +- cmd/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/auth/login.go b/auth/login.go index 8c483e5..0e21d91 100644 --- a/auth/login.go +++ b/auth/login.go @@ -1,4 +1,4 @@ -// Package auth implements the LOGIN and MD5-DIGEST smtp authentication mechansims +// Package auth implements the LOGIN and MD5-DIGEST smtp authentication mechanisms package auth import ( diff --git a/cmd/main.go b/cmd/main.go index 1b934c6..9e80eb8 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -21,7 +21,7 @@ func main() { m := mail.NewMsg() if err := m.From(fa); err != nil { - fmt.Printf("failed to set FROM addres: %s", err) + fmt.Printf("failed to set FROM address: %s", err) os.Exit(1) } if err := m.To(toa); err != nil {