From f69822c70e5f02e37f984d5282f675733d2de9c2 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 8 Aug 2011 17:37:52 +0200 Subject: [PATCH] http2: reword confusing comment --- lib/http2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http2.js b/lib/http2.js index 36b81ec2c74..7947485e052 100644 --- a/lib/http2.js +++ b/lib/http2.js @@ -1035,7 +1035,7 @@ function ClientRequest(options, cb) { self.shouldKeepAlive = true; self.agent.addRequest(self, options.host, options.port); } else { - // No agent should default to Connection:close. + // No agent, default to Connection:close. self._last = true; self.shouldKeepAlive = false; self.onSocket(net.createConnection(options.port, options.host));