Skip to content

Commit e23cc72

Browse files
Fix typo in NoLivingConnectionsError (#1045)
Co-authored-by: Tomas Della Vedova <[email protected]>
1 parent 59f7204 commit e23cc72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Transport.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class Transport {
108108
if (meta.aborted === true) return
109109
meta.connection = this.getConnection({ requestId: meta.request.id })
110110
if (meta.connection === null) {
111-
return callback(new NoLivingConnectionsError('There are not living connections'), result)
111+
return callback(new NoLivingConnectionsError('There are no living connections'), result)
112112
}
113113

114114
// TODO: make this assignment FAST

0 commit comments

Comments
 (0)