Skip to content

Commit

Permalink
Update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Oct 30, 2017
1 parent 28cdd8e commit d6824f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions config/retry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ func TestRetryFunc(t *testing.T) {
{
"max backoff, attempt 100",
&RetryConfig{
Attempts: Int(0),
Backoff: TimeDuration(1 * time.Millisecond),
MaxBackoff: TimeDuration(2 * time.Millisecond),
},
Attempts: Int(0),
Backoff: TimeDuration(1 * time.Millisecond),
MaxBackoff: TimeDuration(2 * time.Millisecond),
},
Int(100),
Bool(true),
TimeDuration(2 * time.Millisecond),
Expand Down
2 changes: 1 addition & 1 deletion manager/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type Runner struct {

// outStream and errStream are the io.Writer streams where the runner will
// write information. These can be modified by calling SetOutStream and
// SetErrStream accordingly.
// SetErrStream accordingly.

// inStream is the ioReader where the runner will read information.
outStream, errStream io.Writer
Expand Down
2 changes: 1 addition & 1 deletion template/funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ func indent(spaces int, s string) (string, error) {
output = append(output, prefix...)
size += spaces
}
output = append(output, c);
output = append(output, c)
sp = c == '\n'
size += 1
}
Expand Down

0 comments on commit d6824f6

Please sign in to comment.