Skip to content

Commit 1aec4fd

Browse files
authored
chore: fix typo on unsupported SSL connection (#2273)
1 parent f7cffd0 commit 1aec4fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/commands/client_handshake.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class ClientHandshake extends Command {
137137
if (connection.config.ssl) {
138138
// client requires SSL but server does not support it
139139
if (!serverSSLSupport) {
140-
const err = new Error('Server does not support secure connnection');
140+
const err = new Error('Server does not support secure connection');
141141
err.code = 'HANDSHAKE_NO_SSL_SUPPORT';
142142
err.fatal = true;
143143
this.emit('error', err);

0 commit comments

Comments
 (0)