From 27fb87e6ce89d5a46a71bd59255d2933be2be0fb Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 8 Aug 2020 11:47:35 -0400 Subject: [PATCH] Fix two typos in log messages. --- pop3/conn.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pop3/conn.go b/pop3/conn.go index 11e25e9..29c5eea 100644 --- a/pop3/conn.go +++ b/pop3/conn.go @@ -249,7 +249,7 @@ func (conn *connection) doRETR() { return } - conn.log.Info("retreive message", zap.String("unique-id", msg.UniqueID())) + conn.log.Info("retrieve message", zap.String("unique-id", msg.UniqueID())) conn.ok(fmt.Sprintf("%d", msg.Size())) w := conn.tp.DotWriter() @@ -316,7 +316,7 @@ func (conn *connection) doUIDL() { } func (conn *connection) doCAPA() { - conn.ok("capabilitiy list") + conn.ok("capability list") caps := []string{ "USER", -- 2.22.5