diff --git a/lib/commands/client_handshake.js b/lib/commands/client_handshake.js index c8fb1e1eaa..f6cd56ccdf 100644 --- a/lib/commands/client_handshake.js +++ b/lib/commands/client_handshake.js @@ -137,7 +137,7 @@ class ClientHandshake extends Command { if (connection.config.ssl) { // client requires SSL but server does not support it if (!serverSSLSupport) { - const err = new Error('Server does not support secure connnection'); + const err = new Error('Server does not support secure connection'); err.code = 'HANDSHAKE_NO_SSL_SUPPORT'; err.fatal = true; this.emit('error', err);