Codebase list golang-github-vbauerster-mpb / 016f13a
default speed unit: cast to int64 Vladimir Bauer 3 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
170170 }
171171 default:
172172 return func(speed float64) string {
173 return fmt.Sprintf(format, speed)
173 return fmt.Sprintf(format, int64(math.Round(speed)))
174174 }
175175 }
176176 }