mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2026-01-15 08:22:37 +01:00
Fix error message grammar (D'oh!)
This commit is contained in:
@@ -73,7 +73,7 @@ const ipAddressParser = {
|
||||
const fourth = parseInt(matches[4]);
|
||||
|
||||
if(invalid(first) || invalid(second) || invalid(third) || invalid(fourth))
|
||||
return new ParsingError(`${input} value doesn't fall within the valid range of the IP address space`);
|
||||
return new ParsingError(`${input} doesn't represent a valid IP address space`);
|
||||
|
||||
const ipAddress = new IpAddress(first, second, third, fourth);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user