mirror of
https://github.com/golang/go
synced 2024-11-23 14:40:02 -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:
parent
be1a94b401
commit
fae4553a9d
@ -521,7 +521,7 @@ func isAtext(c byte, dot bool) bool {
|
|||||||
return bytes.IndexByte(atextChars, c) >= 0
|
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 {
|
func isQtext(c byte) bool {
|
||||||
// Printable US-ASCII, excluding backslash or quote.
|
// Printable US-ASCII, excluding backslash or quote.
|
||||||
if c == '\\' || c == '"' {
|
if c == '\\' || c == '"' {
|
||||||
|
Loading…
Reference in New Issue
Block a user