Skip to content

Commit

Permalink
kwil-cli: fix error typo (#1351)
Browse files Browse the repository at this point in the history
  • Loading branch information
brennanjl authored Feb 6, 2025
1 parent 2848f85 commit 8a93bec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/kwil-cli/cmds/exec-action.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ func parseTypedParam(param string) (datatype *types.DataType, val any, err error

val, err = stringAndTypeToVal(parts[1], datatype)
if err != nil {
return nil, nil, fmt.Errorf(`invalid parameter value: "%s";sla error: %w`, parts[1], err)
return nil, nil, fmt.Errorf(`invalid parameter value: "%s"; error: %w`, parts[1], err)
}

return datatype, val, nil
Expand Down

0 comments on commit 8a93bec

Please sign in to comment.