1
0
mirror of https://github.com/golang/go synced 2024-11-23 12:10:11 -07:00

net/mail: fix minor doc typo.

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/15510043
This commit is contained in:
David Symonds 2013-10-21 17:32:45 +11:00
parent be1a94b401
commit fae4553a9d

View File

@ -521,7 +521,7 @@ func isAtext(c byte, dot bool) bool {
return bytes.IndexByte(atextChars, c) >= 0
}
// isQtext returns true if c is an RFC 5322 qtest character.
// isQtext returns true if c is an RFC 5322 qtext character.
func isQtext(c byte) bool {
// Printable US-ASCII, excluding backslash or quote.
if c == '\\' || c == '"' {