comparison managesieve.go @ 11:b790df0733d4

Fix typos
author Guido Berhoerster <guido+managesieve@berhoerster.name>
date Tue, 09 Feb 2021 21:28:13 +0100
parents 75a4ee940f36
children 66b46b3d73be
comparison
equal deleted inserted replaced
10:8cd45453f5be 11:b790df0733d4
84 Code string 84 Code string
85 Msg string 85 Msg string
86 } 86 }
87 87
88 func (e *ConnClosedError) Error() string { 88 func (e *ConnClosedError) Error() string {
89 msg := "the server has closed to connection" 89 msg := "the server has closed the connection"
90 if e.Msg != "" { 90 if e.Msg != "" {
91 return msg + ": " + e.Msg 91 return msg + ": " + e.Msg
92 } 92 }
93 return msg 93 return msg
94 } 94 }