File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
4141func 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 (),
You can’t perform that action at this time.
0 commit comments