8321519: Typo in exception message

Reviewed-by: jpai
This commit is contained in:
Daniel Jeliński 2023-12-07 12:00:12 +00:00
parent b5933b186f
commit ead4fb1464
3 changed files with 3 additions and 3 deletions

View file

@ -368,7 +368,7 @@ abstract class Poller {
// check power of 2
if (count != Integer.highestOneBit(count)) {
String msg = propName + " is set to a vale that is not a power of 2";
String msg = propName + " is set to a value that is not a power of 2";
throw new IllegalArgumentException(msg);
}
return count;