ups fix
Vladimir Bauer
6 years ago
| 76 | 76 |
func (d *movingAverageSpeed) Decor(st *Statistics) string {
|
| 77 | 77 |
if !st.Completed {
|
| 78 | 78 |
var speed float64
|
| 79 | |
if v := d.average.Value(); v < 0 {
|
|
79 |
if v := d.average.Value(); v > 0 {
|
| 80 | 80 |
speed = 1 / v
|
| 81 | 81 |
}
|
| 82 | 82 |
d.msg = d.producer(speed * 1e9)
|