remove stray space
This commit is contained in:
parent
d97cb74f3f
commit
39a9b7434b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue