mirror of
https://github.com/golang/go
synced 2024-11-14 08:10:22 -07:00
all: fix up language in a couple of comments
Leftovers from 11699043 R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/12558046
This commit is contained in:
parent
a4eac94b57
commit
a4ebad79b4
@ -528,7 +528,7 @@ func IsExported(name string) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// IsExported reports whether id is an exported Go symbol
|
// IsExported reports whether id is an exported Go symbol
|
||||||
// (i.e., whether it begins with an uppercase letter).
|
// (that is, whether it begins with an uppercase letter).
|
||||||
//
|
//
|
||||||
func (id *Ident) IsExported() bool { return IsExported(id.Name) }
|
func (id *Ident) IsExported() bool { return IsExported(id.Name) }
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@ func decodeCSS(s []byte) []byte {
|
|||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
// isHex reports reports whether the given character is a hex digit.
|
// isHex reports whether the given character is a hex digit.
|
||||||
func isHex(c byte) bool {
|
func isHex(c byte) bool {
|
||||||
return '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F'
|
return '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user