Closed daveyarwood closed 9 years ago
Per issue #3, requiring inet.data.ip throws an exception related to a couple of typos where address should be -address.
inet.data.ip
address
-address
Similarly, requiring inet.data.dns throws an exception related to a typo where domain should be -domain.
inet.data.dns
domain
-domain
This PR corrects these typos, as well as a minor one in one of the code examples in the README.
Great library, by the way! It is really coming in handy on a particular project I'm working on at work. :+1:
EDIT: Per discussion on #3, we will instead solve this issue by defining/declaring the domain and address protocol wrappers earlier.
Per issue #3, requiring
inet.data.ip
throws an exception related to a couple of typos whereaddress
should be-address
.Similarly, requiring
inet.data.dns
throws an exception related to a typo wheredomain
should be-domain
.This PR corrects these typos, as well as a minor one in one of the code examples in the README.
Great library, by the way! It is really coming in handy on a particular project I'm working on at work. :+1:
EDIT: Per discussion on #3, we will instead solve this issue by defining/declaring the
domain
andaddress
protocol wrappers earlier.