Commit edab5dc4 authored by Dmitri Shuralyov's avatar Dmitri Shuralyov Committed by Brad Fitzpatrick

html: Use existing standard library interface internally.

Now that Go 1.1 is out, commit 3651a440
can be reverted.

Change-Id: I7ac8478aafaa5067630e99cec9eca59792107892
Reviewed-on: https://go-review.googlesource.com/11612Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 8bfde94a
......@@ -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)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment