aboutsummaryrefslogtreecommitdiff
path: root/html/render.go
diff options
context:
space:
mode:
Diffstat (limited to 'html/render.go')
-rw-r--r--html/render.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/render.go b/html/render.go
index 4a833b4..d34564f 100644
--- a/html/render.go
+++ b/html/render.go
@@ -14,7 +14,7 @@ import (
type writer interface {
io.Writer
- WriteByte(c byte) error // in Go 1.1, use io.ByteWriter
+ io.ByteWriter
WriteString(string) (int, error)
}