From 48cdfbca940c0c26cca00b4613d8d8f885805645 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Wed, 4 Nov 2009 16:49:28 -0800 Subject: gofmt-ify bytes R=r http://go/go-review/1016044 --- src/pkg/bytes/buffer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/bytes/buffer.go') diff --git a/src/pkg/bytes/buffer.go b/src/pkg/bytes/buffer.go index 6e5887cb0..875086525 100644 --- a/src/pkg/bytes/buffer.go +++ b/src/pkg/bytes/buffer.go @@ -46,7 +46,7 @@ func (b *Buffer) Bytes() []byte { func (b *Buffer) String() string { if b == nil { // Special case, useful in debugging. - return "" + return ""; } return string(b.buf[b.off : len(b.buf)]); } -- cgit v1.2.3