mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-02-16 10:30:42 +00:00
typo
This commit is contained in:
@@ -19,7 +19,7 @@ public class ConstantRange implements Range {
|
||||
private int max;
|
||||
|
||||
public ConstantRange(int min, int max) {
|
||||
if(min > max) throw new IllegalArgumentException("Minimum must not be grater than maximum!");
|
||||
if(min > max) throw new IllegalArgumentException("Minimum must not be greater than maximum!");
|
||||
this.max = max;
|
||||
this.min = min;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user