Skip to content

Commit

Permalink
[Squash] Fix nits
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnell committed Nov 22, 2017
1 parent a9f60af commit 46827db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/internal/http2/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ function onSelectPadding(fn) {
// will be deferred until the socket is ready to go.
function requestOnConnect(headers, options) {
const session = this[kSession];
debug(`HttpSession ${sessionName(session[kType])}: connected, ` +
debug(`Http2Session ${sessionName(session[kType])}: connected, ` +
'initializing request');
const streams = session[kState].streams;

Expand Down Expand Up @@ -1011,7 +1011,7 @@ class ClientHttp2Session extends Http2Session {
const state = this[kState];
if (state.destroyed || state.destroying)
throw new errors.Error('ERR_HTTP2_INVALID_SESSION');
debug(`HttpSession ${sessionName(this[kType])}: initiating request`);
debug(`Http2Session ${sessionName(this[kType])}: initiating request`);

this[kUpdateTimer]();

Expand Down

0 comments on commit 46827db

Please sign in to comment.