Fix typos

This commit is contained in:
Christian Muehlhaeuser 2021-08-23 23:15:21 +02:00
parent 985ffcb319
commit cb52746b97
No known key found for this signature in database
GPG Key ID: 3CF9FA45CA1EBB7E

View File

@ -136,7 +136,7 @@ type Model struct {
PercentFormat string // a fmt string for a float PercentFormat string // a fmt string for a float
PercentageStyle lipgloss.Style PercentageStyle lipgloss.Style
// Members for animated transitons. // Members for animated transitions.
spring harmonica.Spring spring harmonica.Spring
springCustomized bool springCustomized bool
percent float64 percent float64
@ -176,7 +176,7 @@ func NewModel(opts ...Option) Model {
return m 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. // SetPercent to create the command you'll need to trigger the animation.
// //
// If you're rendering with ViewAs you won't need this. // If you're rendering with ViewAs you won't need this.