remove stray space

This commit is contained in:
Josh Deprez 2021-01-12 10:46:46 +11:00
parent d97cb74f3f
commit 39a9b7434b

View file

@ -59,7 +59,7 @@ func frequency2(data []byte) (float64, error) {
} }
if n == 100 { if n == 100 {
// this translates as 1 Hz, which is unlikely // this translates as 1 Hz, which is unlikely
return 0, fmt.Errorf(" %w: frequency_2 is 1.00Hz", errSkippableRead) return 0, fmt.Errorf("%w: frequency_2 is 1.00Hz", errSkippableRead)
} }
return float64(n), nil return float64(n), nil
} }