From 06edca919242acc3bb3a9325b783683ebe015280 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Thu, 5 Sep 2019 18:35:24 -0700 Subject: [PATCH] docs --- writer.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/writer.go b/writer.go index 3b0fe41..a3f3cd8 100644 --- a/writer.go +++ b/writer.go @@ -1,5 +1,8 @@ package buffers +// Writer provides an io.Writer interface to a byte array, and byte slice. +// +// This is something that should probably exist in the Go built-in "bytes" library, but doesn't. type Writer struct { dst []byte index int