Skip to content

Commit

Permalink
refactor(putils): Improved styling
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinJWendt committed Feb 14, 2022
1 parent 45558b7 commit ffdf66f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion putils/stats.go
Expand Up @@ -24,7 +24,7 @@ func PrintAverageExecutionTime(count int, f func(i int) error) error {

averageExecutionTime := total / time.Duration(count)

pterm.Printfln(pterm.Cyan("Average execution time: %s"), pterm.LightCyan(averageExecutionTime))
pterm.Printfln(pterm.Cyan("Average execution time: %s"), pterm.NewStyle(pterm.Bold, pterm.FgLightCyan).Sprint(averageExecutionTime))

return nil
}

0 comments on commit ffdf66f

Please sign in to comment.