Skip to content

Commit

Permalink
net, doc: fix line wrapping lint in net.js
Browse files Browse the repository at this point in the history
Missed on the previous review, minor line wrapping nit

PR-URL: #4588
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
jasnell authored and Myles Borins committed Jan 12, 2016
1 parent 799aa74 commit 9accebe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/net.js
Expand Up @@ -951,9 +951,9 @@ function lookupAndConnect(self, options) {

if (dnsopts.family !== 4 && dnsopts.family !== 6) {
dnsopts.hints = dns.ADDRCONFIG;
// The AI_V4MAPPED hint is not supported on FreeBSD or Android, and getaddrinfo
// returns EAI_BADFLAGS. However, it seems to be supported on most other
// systems. See
// The AI_V4MAPPED hint is not supported on FreeBSD or Android,
// and getaddrinfo returns EAI_BADFLAGS. However, it seems to be
// supported on most other systems. See
// http://lists.freebsd.org/pipermail/freebsd-bugs/2008-February/028260.html
// for more information on the lack of support for FreeBSD.
if (process.platform !== 'freebsd' && process.platform !== 'android')
Expand Down

0 comments on commit 9accebe

Please sign in to comment.