diff --git a/src/main/org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.java b/src/main/org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.java index 90d29ca9d..34ae1a069 100644 --- a/src/main/org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.java +++ b/src/main/org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.java @@ -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) {