Skip to content

Commit

Permalink
Merge pull request #310 from dmlloyd/typo
Browse files Browse the repository at this point in the history
Fix long-standing typo in validation message
  • Loading branch information
dmlloyd authored May 7, 2024
2 parents 4148ce2 + 67a53ff commit 27450b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface Messages {

IllegalArgumentException paramLessThan(String name, Object min);

@Message(id = 2, value = "Parameter '%s' may not be greater than than %s")
@Message(id = 2, value = "Parameter '%s' may not be greater than %s")
IllegalArgumentException paramGreaterThan(String name, long max);

IllegalArgumentException paramGreaterThan(String name, double max);
Expand Down

0 comments on commit 27450b9

Please sign in to comment.