mirror of
https://github.com/golang/go
synced 2024-11-21 17:44:40 -07:00
html: fix typo in package docs.
Fixes #2419. R=dsymonds, rsc CC=golang-dev https://golang.org/cl/5352046
This commit is contained in:
parent
2d89db65c0
commit
46ee09eff1
@ -61,7 +61,7 @@ call to Next. For example, to extract an HTML page's anchor text:
|
||||
case StartTagToken, EndTagToken:
|
||||
tn, _ := z.TagName()
|
||||
if len(tn) == 1 && tn[0] == 'a' {
|
||||
if tt == StartTag {
|
||||
if tt == StartTagToken {
|
||||
depth++
|
||||
} else {
|
||||
depth--
|
||||
|
Loading…
Reference in New Issue
Block a user