Skip to content

Commit

Permalink
Fixed error message for incorrect parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianLeishman committed Jul 23, 2018
1 parent c43cba2 commit eda4ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func get_url_param_deinit(initid *C.UDF_INIT) {}
//export get_url_param_init
func get_url_param_init(initid *C.UDF_INIT, args *C.UDF_ARGS, message *C.char) C.my_bool {
if args.arg_count != 2 {
msg(message, "`get_url_param` require 2 parameters: the URL string and the param name")
msg(message, "`get_url_param` requires 2 parameters: the URL string and the param name")
return 1
}

Expand Down

0 comments on commit eda4ccc

Please sign in to comment.