We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 657f818 commit 10cff7bCopy full SHA for 10cff7b
lib/internal/quic/quic.js
@@ -776,7 +776,7 @@ class QuicStream {
776
[kSendHeaders](headers) {
777
validateObject(headers, 'headers');
778
if (this.pending) {
779
- debug('pending stream enqueing headers', headers);
+ debug('pending stream enqueuing headers', headers);
780
} else {
781
debug(`stream ${this.id} sending headers`, headers);
782
}
src/quic/streams.cc
@@ -1109,7 +1109,7 @@ void Stream::Acknowledge(size_t datalen) {
1109
1110
1111
void Stream::Commit(size_t datalen) {
1112
- Debug(this, "Commiting %zu bytes", datalen);
+ Debug(this, "Committing %zu bytes", datalen);
1113
STAT_RECORD_TIMESTAMP(Stats, acked_at);
1114
if (outbound_) outbound_->Commit(datalen);
1115
0 commit comments