Skip to content

Commit

Permalink
Fix typo in NoLivingConnectionsError
Browse files Browse the repository at this point in the history
  • Loading branch information
gomesalexandre authored Jan 7, 2020
1 parent be44957 commit 50a36e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Transport.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class Transport {
if (meta.aborted === true) return
meta.connection = this.getConnection({ requestId: meta.request.id })
if (meta.connection === null) {
return callback(new NoLivingConnectionsError('There are not living connections'), result)
return callback(new NoLivingConnectionsError('There are no living connections'), result)
}

// TODO: make this assignment FAST
Expand Down

0 comments on commit 50a36e7

Please sign in to comment.