Skip to content

Commit adf41b9

Browse files
committed
net, doc: fix line wrapping lint in net.js
Missed on the previous review, minor line wrapping nit PR-URL: nodejs#4588 Reviewed-By: Colin Ihrig <[email protected]>
1 parent c64018e commit adf41b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/net.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -953,9 +953,9 @@ function lookupAndConnect(self, options) {
953953

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

0 commit comments

Comments
 (0)