Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
prasser committed Aug 29, 2024
1 parent 668f8aa commit d127879
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@ protected AbstractGroup[][] prepareGroups() {

// Step 4.3 Error if < lower
} else if (type.compare(value, tempLower.labelBound) < 0) {
throw new IllegalArgumentException("Data item " + type.format(value) + " is < minim value (" + type.format(tempLower.labelBound) + ")");
throw new IllegalArgumentException("Data item " + type.format(value) + " is < minimum value (" + type.format(tempLower.labelBound) + ")");

// Step 4.4 Bottom coding
} else if (type.compare(value, tempLower.snapBound) < 0) {
Expand Down

0 comments on commit d127879

Please sign in to comment.