Format docs
authorbep <bjorn.erik.pedersen@gmail.com>
Thu, 19 Mar 2015 01:09:42 +0000 (02:09 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Thu, 19 Mar 2015 01:09:42 +0000 (02:09 +0100)
transform/chain.go

index 6c41c4199e3d0588c792a3bec57003d51960f1f9..ab26a350e8403aa7e1773be20d6b7a856af063b0 100644 (file)
@@ -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