From b046412bb1662fce794571b515b76a451100f4a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 1 Jan 2018 23:57:53 +0100 Subject: [PATCH] http2: remove duplicate words in comments PR-URL: https://github.com/nodejs/node/pull/17939 Reviewed-By: Colin Ihrig Reviewed-By: Jon Moss Reviewed-By: James M Snell --- lib/internal/http2/core.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/internal/http2/core.js b/lib/internal/http2/core.js index 2e420d14cecd83..1149caa84277e2 100644 --- a/lib/internal/http2/core.js +++ b/lib/internal/http2/core.js @@ -409,7 +409,7 @@ function onAltSvc(stream, origin, alt) { // Receiving a GOAWAY frame from the connected peer is a signal that no // new streams should be created. If the code === NGHTTP2_NO_ERROR, we -// are going to send our our close, but allow existing frames to close +// are going to send our close, but allow existing frames to close // normally. If code !== NGHTTP2_NO_ERROR, we are going to send our own // close using the same code then destroy the session with an error. // The goaway event will be emitted on next tick. @@ -464,7 +464,7 @@ function requestOnConnect(headers, options) { if (session.destroyed) return; - // If the session was closed while waiting for for the connect, destroy + // If the session was closed while waiting for the connect, destroy // the stream and do not continue with the request. if (session.closed) { const err = new errors.Error('ERR_HTTP2_GOAWAY_SESSION');