aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2013-11-01 11:08:05 +1100
committerAndrew Gerrand <adg@golang.org>2013-11-01 11:08:05 +1100
commit34250ab21200482a13dfb3c67e2bc5fad4e0e855 (patch)
treed5c479d76e99ecba5149da3fed904bb943e79623
parent11f1f82b30b6f71d7d62b1c4b57ef37ad03502ae (diff)
downloadgo-34250ab21200482a13dfb3c67e2bc5fad4e0e855.tar.gz
go-34250ab21200482a13dfb3c67e2bc5fad4e0e855.zip
[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
-rw-r--r--src/pkg/net/mail/message.go2
1 files changed, 1 insertions, 1 deletions
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 == '"' {