From: Andrew Gerrand Date: Fri, 1 Nov 2013 00:08:05 +0000 (+1100) Subject: [release-branch.go1.2] net/mail: fix minor doc typo. X-Git-Tag: go1.2rc3~34 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=34250ab21200482a13dfb3c67e2bc5fad4e0e855;p=gostls13.git [release-branch.go1.2] net/mail: fix minor doc typo. ««« CL 15510043 / 6752a7aad603 net/mail: fix minor doc typo. R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/15510043 »»» R=golang-dev CC=golang-dev https://golang.org/cl/20560043 --- diff --git a/src/pkg/net/mail/message.go b/src/pkg/net/mail/message.go index 3a4994804a..dc2ab44dab 100644 --- a/src/pkg/net/mail/message.go +++ b/src/pkg/net/mail/message.go @@ -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 == '"' {