Skip to content

Commit

Permalink
Slightly refactored
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Sh committed Dec 10, 2024
1 parent bd23524 commit ab9961a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coeffs/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func parseArrayToFloat(raw_data []string) (*[]float64, error) {
for index, token := range raw_data {
real_data, err := strconv.ParseFloat(token, 32)
if err != nil {
return nil, errors.New("Unable to parse coeffs.")
return nil, errors.New("unable to parse coeffs")
}
if index == len(raw_data)-1 {
// real value calculated for the SV column
Expand Down

0 comments on commit ab9961a

Please sign in to comment.