We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd23524 commit ab9961aCopy full SHA for ab9961a
coeffs/utils.go
@@ -98,7 +98,7 @@ func parseArrayToFloat(raw_data []string) (*[]float64, error) {
98
for index, token := range raw_data {
99
real_data, err := strconv.ParseFloat(token, 32)
100
if err != nil {
101
- return nil, errors.New("Unable to parse coeffs.")
+ return nil, errors.New("unable to parse coeffs")
102
}
103
if index == len(raw_data)-1 {
104
// real value calculated for the SV column
0 commit comments