Correcting mini typing error

This commit is contained in:
adiaholic 2019-07-09 22:12:26 +05:30
parent c6c904cc3e
commit fe85ab3b83
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ public class NumberUtil {
throw new IllegalArgumentException("unsigned 32-bit integers can't be negative");
}
if (value > ((1L << 32) - 1)) {
throw new IllegalArgumentException("unsigned 32-bit integers can't be greater then 2^32 - 1");
throw new IllegalArgumentException("unsigned 32-bit integers can't be greater than 2^32 - 1");
}
return value;
}