From da28244f819eee285fbc3c657fa704c881099660 Mon Sep 17 00:00:00 2001 From: dfsek Date: Sun, 29 May 2022 23:46:05 -0700 Subject: [PATCH] typo --- .../src/main/java/com/dfsek/terra/api/util/ConstantRange.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/api/src/main/java/com/dfsek/terra/api/util/ConstantRange.java b/common/api/src/main/java/com/dfsek/terra/api/util/ConstantRange.java index a4b72de83..f3cd2cfbc 100644 --- a/common/api/src/main/java/com/dfsek/terra/api/util/ConstantRange.java +++ b/common/api/src/main/java/com/dfsek/terra/api/util/ConstantRange.java @@ -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; }