Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang8330 committed Sep 9, 2024
1 parent 7ef4fb6 commit e64bdf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/typing/values/string.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func ToString(colVal any, colKind typing.KindDetails) (string, error) {
return castedColVal.String(), nil
}

return "", fmt.Errorf("colVal is not *decimal.Decimal type, type is: %T", colVal)
return "", fmt.Errorf("unexpected colVal type: %T", colVal)
}

return fmt.Sprint(colVal), nil
Expand Down

0 comments on commit e64bdf4

Please sign in to comment.