From 9accebe0877face545382848cb6e1bf00a0dc1ce Mon Sep 17 00:00:00 2001 From: James M Snell Date: Fri, 8 Jan 2016 10:14:38 -0800 Subject: [PATCH] net, doc: fix line wrapping lint in net.js Missed on the previous review, minor line wrapping nit PR-URL: https://github.com/nodejs/node/pull/4588 Reviewed-By: Colin Ihrig --- lib/net.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/net.js b/lib/net.js index 03656f545af6ef..b8503938626107 100644 --- a/lib/net.js +++ b/lib/net.js @@ -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')