From 109a296e2ad15221b89a33efec9ba3ff56df3d27 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Wed, 23 Sep 2020 10:14:15 +0900 Subject: [PATCH] quic: fix typo in code comment successfull -> successful PR-URL: https://github.com/nodejs/node/pull/35308 Reviewed-By: Richard Lau Reviewed-By: Gireesh Punathil Reviewed-By: Daijiro Wachi Reviewed-By: Zeyu Yang Reviewed-By: Rich Trott --- src/quic/node_quic_session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic/node_quic_session.cc b/src/quic/node_quic_session.cc index 9b74f03b0cc635..ed1293a2210d12 100644 --- a/src/quic/node_quic_session.cc +++ b/src/quic/node_quic_session.cc @@ -1984,7 +1984,7 @@ bool QuicSession::OpenUnidirectionalStream(int64_t* stream_id) { return ngtcp2_conn_open_uni_stream(connection(), stream_id, nullptr) == 0; } -// When ngtcp2 receives a successfull response to a PATH_CHALLENGE, +// When ngtcp2 receives a successful response to a PATH_CHALLENGE, // it will trigger the OnPathValidation callback which will, in turn // invoke this. There's really nothing to do here but update stats and // and optionally notify the javascript side if there is a handler registered.