Add line-break after exported fields

Match the Golang std library style of adding line-breaks after exported
fields.

http://golang.org/src/pkg/sync/cond.go?s=609:772#L12
This commit is contained in:
Harlow Ward 2014-11-15 16:25:27 -08:00
parent 5095681ad0
commit 59f488e6c7
2 changed files with 4 additions and 2 deletions

View file

@ -5,6 +5,7 @@ package connector
// decides whether a record will be added to the buffer to be emitted. // decides whether a record will be added to the buffer to be emitted.
type RecordBuffer struct { type RecordBuffer struct {
NumRecordsToBuffer int NumRecordsToBuffer int
firstSequenceNumber string firstSequenceNumber string
lastSequenceNumber string lastSequenceNumber string
recordsInBuffer []Record recordsInBuffer []Record

View file

@ -9,8 +9,9 @@ import (
// A Redis implementation of the Checkpont interface. This class is used to enable the Pipeline.ProcessShard // A Redis implementation of the Checkpont interface. This class is used to enable the Pipeline.ProcessShard
// to checkpoint their progress. // to checkpoint their progress.
type RedisCheckpoint struct { type RedisCheckpoint struct {
AppName string AppName string
StreamName string StreamName string
client redis.Client client redis.Client
sequenceNumber string sequenceNumber string
} }