Skip to content

Commit 06329a8

Browse files
tniessenrvagg
authored andcommitted
http2: remove duplicate words in comments
PR-URL: #17939 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 2c6f482 commit 06329a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/http2/core.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ function onAltSvc(stream, origin, alt) {
409409

410410
// Receiving a GOAWAY frame from the connected peer is a signal that no
411411
// new streams should be created. If the code === NGHTTP2_NO_ERROR, we
412-
// are going to send our our close, but allow existing frames to close
412+
// are going to send our close, but allow existing frames to close
413413
// normally. If code !== NGHTTP2_NO_ERROR, we are going to send our own
414414
// close using the same code then destroy the session with an error.
415415
// The goaway event will be emitted on next tick.
@@ -464,7 +464,7 @@ function requestOnConnect(headers, options) {
464464
if (session.destroyed)
465465
return;
466466

467-
// If the session was closed while waiting for for the connect, destroy
467+
// If the session was closed while waiting for the connect, destroy
468468
// the stream and do not continue with the request.
469469
if (session.closed) {
470470
const err = new errors.Error('ERR_HTTP2_GOAWAY_SESSION');

0 commit comments

Comments
 (0)