Skip to content

Commit f063ea9

Browse files
committed
fmt
1 parent d4fd277 commit f063ea9

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

pkg/terminal/terminal.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ type Terminal struct {
2626
verbose io.Writer
2727
err io.Writer
2828

29-
Green func(format string, a ...interface{}) string
30-
Yellow func(format string, a ...interface{}) string
31-
Red func(format string, a ...interface{}) string
32-
Blue func(format string, a ...interface{}) string
33-
White func(format string, a ...interface{}) string
29+
Green func(format string, a ...interface{}) string
30+
Yellow func(format string, a ...interface{}) string
31+
Red func(format string, a ...interface{}) string
32+
Blue func(format string, a ...interface{}) string
33+
White func(format string, a ...interface{}) string
3434
BoldBlue func(format string, a ...interface{}) string
3535

3636
Bar ProgressBar
@@ -40,9 +40,9 @@ type Terminal struct {
4040

4141
func New() (t *Terminal) {
4242
return &Terminal{
43-
out: os.Stdout,
44-
verbose: os.Stdout,
45-
err: os.Stderr,
43+
out: os.Stdout,
44+
verbose: os.Stdout,
45+
err: os.Stderr,
4646
Green: color.New(color.FgGreen).SprintfFunc(),
4747
Yellow: color.New(color.FgYellow).SprintfFunc(),
4848
Red: color.New(color.FgRed).SprintfFunc(),

0 commit comments

Comments
 (0)