From cb52746b978bfed44931f2638a2ff11bf43ff478 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 23 Aug 2021 23:15:21 +0200 Subject: [PATCH] Fix typos --- progress/progress.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/progress/progress.go b/progress/progress.go index 421e146..6c35c8d 100644 --- a/progress/progress.go +++ b/progress/progress.go @@ -136,7 +136,7 @@ type Model struct { PercentFormat string // a fmt string for a float PercentageStyle lipgloss.Style - // Members for animated transitons. + // Members for animated transitions. spring harmonica.Spring springCustomized bool percent float64 @@ -176,7 +176,7 @@ func NewModel(opts ...Option) Model { return m } -// Update is used to animation the progress bar during transitons. Use +// Update is used to animation the progress bar during transitions. Use // SetPercent to create the command you'll need to trigger the animation. // // If you're rendering with ViewAs you won't need this.