Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2020-09-23 04:14:15 +0300
committerRich Trott <rtrott@gmail.com>2020-09-25 20:53:06 +0300
commit109a296e2ad15221b89a33efec9ba3ff56df3d27 (patch)
tree90e766dae8068047cb640da1d6c8ab8b5032f299 /src
parentc25cf34ac1cfb8e3a9508c232d42100e45abd8e9 (diff)
quic: fix typo in code comment
successfull -> successful PR-URL: https://github.com/nodejs/node/pull/35308 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Zeyu Yang <himself65@outlook.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/quic/node_quic_session.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quic/node_quic_session.cc b/src/quic/node_quic_session.cc
index 9b74f03b0cc..ed1293a2210 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.