Skip to content

Commit

Permalink
Fix long-standing typo in validation message
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlloyd committed Sep 25, 2024
1 parent 63fa355 commit 5c707a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public interface CommonMessages {

IllegalArgumentException paramLessThan(String name, double min);

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

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

0 comments on commit 5c707a1

Please sign in to comment.