gofmt-ed last commit

This commit is contained in:
Richard Cooper 2020-11-05 21:56:15 +03:00 committed by Christian Rocha
parent 65a17d039e
commit 68e87e08c5

View File

@ -8,7 +8,7 @@ import (
"github.com/muesli/termenv" "github.com/muesli/termenv"
) )
// Value is explicit type of, you know, progression. Can be 0.0 < x < 1.0 // Value is explicit type of, you know, progression. Can be 0.0 < x < 1.0.
type Value float64 type Value float64
type Model struct { type Model struct {
@ -43,7 +43,7 @@ func NewModel(size int) *Model {
return &Model{ return &Model{
StartColor: startColor, StartColor: startColor,
EndColor: endColor, EndColor: endColor,
Width: size, Width: size,
FilamentSymbol: '█', FilamentSymbol: '█',
EmptySymbol: '░', EmptySymbol: '░',
} }