Skip to content

Commit

Permalink
fix: typo in error message (#1520)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminNolan authored Apr 11, 2024
1 parent 8ba85ad commit 4a35588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/x/validate/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func QueryParamsContainsOneOf(keys ...string) Validator {
return true, ""
}
}
return false, fmt.Sprintf("quey parameters must specify at least one of the following: %s", strings.Join(keys, ", "))
return false, fmt.Sprintf("query parameters must specify at least one of the following: %s", strings.Join(keys, ", "))
}
}

Expand Down

0 comments on commit 4a35588

Please sign in to comment.