mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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 == '"' {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue