summaryrefslogtreecommitdiff
path: root/src/pkg/bytes/buffer.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/bytes/buffer.go')
-rw-r--r--src/pkg/bytes/buffer.go2
1 files changed, 1 insertions, 1 deletions
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 "<nil>"
+ return "<nil>";
}
return string(b.buf[b.off : len(b.buf)]);
}