summaryrefslogtreecommitdiff
path: root/backend.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-11-16 15:31:55 -0500
committerLuke Shumaker <lukeshu@lukeshu.com>2017-11-16 15:31:55 -0500
commit6286191ce6d24c8f48ce2fea40eab59c291654d4 (patch)
treec35906358e2b0c30f8f535c8fac5794b97bd995d /backend.go
parent17e8573c8f240191f267206784c80e5c9131302f (diff)
gofmt
Diffstat (limited to 'backend.go')
-rw-r--r--backend.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend.go b/backend.go
index 4d03d46..3bf07b5 100644
--- a/backend.go
+++ b/backend.go
@@ -1,8 +1,8 @@
package libfastimport
import (
- "io"
"bufio"
+ "io"
"git.lukeshu.com/go/libfastimport/textproto"
)
@@ -10,7 +10,7 @@ import (
// A Backend is something that consumes a fast-import stream; the
// Backend object provides methods for writing to it.
type Backend struct {
- w *bufio.Writer
+ w *bufio.Writer
fiw *textproto.FIWriter
cbr *textproto.CatBlobReader
}