fix: lowercase error messages

This commit is contained in:
Florian Baumann 2024-02-19 08:17:16 +01:00
parent 84122683c4
commit 542fdfd9a6

View File

@ -251,6 +251,6 @@ func getFloat64(unknown interface{}) (float64, error) {
case uint:
return float64(i), nil
default:
return math.NaN(), errors.New("Non-numeric type could not be converted to float")
return math.NaN(), errors.New("non-numeric type could not be converted to float")
}
}