Skip to content

Commit

Permalink
Fix typo in NoLivingConnectionsError (#1045)
Browse files Browse the repository at this point in the history
Co-authored-by: Tomas Della Vedova <delvedor@users.noreply.github.com>
  • Loading branch information
gomesalexandre and delvedor authored Feb 3, 2020
1 parent ebb96e9 commit 7945b68
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 7945b68

Please sign in to comment.