We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb3f401 commit 2b7d009Copy full SHA for 2b7d009
README.md
@@ -62,7 +62,7 @@ ineter (pronounced "Eye-netter") is a tiny Java library for working with:
62
63
##### IPv4Range
64
65
- IPv4Range ipv4Range = IPv4Range.between("192.168.100.0-192.168.101.127"); //Arbitrary range of addresses
+ IPv4Range ipv4Range = IPv4Range.parse("192.168.100.0-192.168.101.127"); //Arbitrary range of addresses
66
67
ipv4Range.contains(IPv4Address.of("192.168.100.100")); //true
68
ipv4Range.overlaps(IPv4Range.of("10.0.0.1", "10.0.0.10")); //false
0 commit comments