Skip to content

Commit eb31fa6

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

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
@@ -109,7 +109,7 @@ class Transport {
109109
if (meta.aborted === true) return
110110
meta.connection = this.getConnection({ requestId: meta.request.id })
111111
if (meta.connection === null) {
112-
return callback(new NoLivingConnectionsError('There are not living connections'), result)
112+
return callback(new NoLivingConnectionsError('There are no living connections'), result)
113113
}
114114

115115
// TODO: make this assignment FAST

0 commit comments

Comments
 (0)