From: bep Date: Thu, 19 Mar 2015 01:09:42 +0000 (+0100) Subject: Format docs X-Git-Tag: v0.14~173 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1e8e5d4e;p=brevno-suite%2Fhugo Format docs --- diff --git a/transform/chain.go b/transform/chain.go index 6c41c419..ab26a350 100644 --- a/transform/chain.go +++ b/transform/chain.go @@ -20,16 +20,15 @@ func NewEmptyTransforms() []link { return make([]link, 0, 20) } -// contentTransformer is an interface that enables rotation -// of pooled buffers in the transformer chain. +// contentTransformer is an interface that enables rotation of pooled buffers +// in the transformer chain. type contentTransformer interface { Content() []byte io.Writer } // Implements contentTransformer -// Content is read from the from-buffer, -// and rewritten to to the to-buffer. +// Content is read from the from-buffer and rewritten to to the to-buffer. type fromToBuffer struct { from *bytes.Buffer to *bytes.Buffer