See https://github.com/nodejs/node/blob/master/lib/dns.js#L333 ``` javascript exports.ADNAME = 'EADNAME'; ``` This line defines the error code `ADNAME` as `'EADNAME'`. Shouldn't it be `BADNAME` and `'EBADNAME'` respectively? ``` javascript exports.BADNAME = 'EBADNAME'; ```
See https://github.com/nodejs/node/blob/master/lib/dns.js#L333
This line defines the error code
ADNAMEas'EADNAME'. Shouldn't it beBADNAMEand'EBADNAME'respectively?