1
0
mirror of https://github.com/golang/go synced 2024-10-02 12:08:32 -06:00

html: fix doc after Err method name change

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5411045
This commit is contained in:
Gustavo Niemeyer 2011-11-18 01:06:59 -02:00
parent 9bfe9dfde7
commit f6279b46f8

View File

@ -37,7 +37,7 @@ lower-cased, and attributes are collected into a []Attribute. For example:
for {
if z.Next() == html.ErrorToken {
// Returning io.EOF indicates success.
return z.Error()
return z.Err()
}
emitToken(z.Token())
}
@ -51,7 +51,7 @@ call to Next. For example, to extract an HTML page's anchor text:
tt := z.Next()
switch tt {
case ErrorToken:
return z.Error()
return z.Err()
case TextToken:
if depth > 0 {
// emitBytes should copy the []byte it receives,