From 68e87e08c5112a50c5192feaa63a658630459da6 Mon Sep 17 00:00:00 2001 From: Richard Cooper Date: Thu, 5 Nov 2020 21:56:15 +0300 Subject: [PATCH] gofmt-ed last commit --- progress/progress.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/progress/progress.go b/progress/progress.go index 05b5503..3f581ea 100644 --- a/progress/progress.go +++ b/progress/progress.go @@ -8,7 +8,7 @@ import ( "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 Model struct { @@ -43,7 +43,7 @@ func NewModel(size int) *Model { return &Model{ StartColor: startColor, EndColor: endColor, - Width: size, + Width: size, FilamentSymbol: '█', EmptySymbol: '░', }