Skip to content

Commit

Permalink
Merge pull request #324 from adiaholic/spellcorrection
Browse files Browse the repository at this point in the history
Correcting mini typing error
  • Loading branch information
Flowdalic authored Jul 28, 2019
2 parents d2f9617 + fe85ab3 commit 96e1447
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static long requireUInt32(long value) {
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;
}
Expand Down

0 comments on commit 96e1447

Please sign in to comment.