mirror of
https://github.com/golang/go
synced 2024-11-18 15:04:44 -07:00
godoc: identifiers can contain underscores, not spaces.
Fixes golang/go#7382. R=bradfitz, sameer CC=golang-codereviews https://golang.org/cl/67090043
This commit is contained in:
parent
29d0463c1c
commit
0cf8ab65b2
@ -1201,7 +1201,7 @@ func (x *Index) lookupWord(w string) (match *LookupResult, alt *AltWords) {
|
||||
// isIdentifier reports whether s is a Go identifier.
|
||||
func isIdentifier(s string) bool {
|
||||
for i, ch := range s {
|
||||
if unicode.IsLetter(ch) || ch == ' ' || i > 0 && unicode.IsDigit(ch) {
|
||||
if unicode.IsLetter(ch) || ch == '_' || i > 0 && unicode.IsDigit(ch) {
|
||||
continue
|
||||
}
|
||||
return false
|
||||
|
Loading…
Reference in New Issue
Block a user