Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(66)

Unified Diff: src/pkg/html/doc.go

Issue 5411045: code review 5411045: html: fix doc after Err method name change (Closed)
Patch Set: diff -r d14520ac25bf https://go.googlecode.com/hg/ Created 13 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/html/doc.go
===================================================================
--- a/src/pkg/html/doc.go
+++ b/src/pkg/html/doc.go
@@ -37,7 +37,7 @@
for {
if z.Next() == html.ErrorToken {
// Returning io.EOF indicates success.
- return z.Error()
+ return z.Err()
}
emitToken(z.Token())
}
@@ -51,7 +51,7 @@
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,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b