shithub: hugo

Download patch

ref: 1e8e5d4e7a5ca3e1b43e2782c5fee52986042f81
parent: 66cf3bdc77d43f92333cd48a351d59d7a5abe1f8
author: bep <[email protected]>
date: Wed Mar 18 22:09:42 EDT 2015

Format docs

--- a/transform/chain.go
+++ b/transform/chain.go
@@ -20,8 +20,8 @@
 	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
@@ -28,8 +28,7 @@
 }
 
 // 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