Skip to content

Commit ab9961a

Browse files
author
Michael Sh
committed
Slightly refactored
1 parent bd23524 commit ab9961a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coeffs/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func parseArrayToFloat(raw_data []string) (*[]float64, error) {
9898
for index, token := range raw_data {
9999
real_data, err := strconv.ParseFloat(token, 32)
100100
if err != nil {
101-
return nil, errors.New("Unable to parse coeffs.")
101+
return nil, errors.New("unable to parse coeffs")
102102
}
103103
if index == len(raw_data)-1 {
104104
// real value calculated for the SV column

0 commit comments

Comments
 (0)