From 0d22858d67f5f8f7959a55ceca23adafe12827d5 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 5 Jul 2017 09:21:40 -0700 Subject: lib: remove excess indentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In anticipation of stricter linting for indentation, remove instances of extra indentation that will be flagged by the new rules. PR-URL: https://github.com/nodejs/node/pull/14090 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca --- lib/tls.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/tls.js') diff --git a/lib/tls.js b/lib/tls.js index 5a03c3c30f..d89f241383 100644 --- a/lib/tls.js +++ b/lib/tls.js @@ -220,7 +220,7 @@ exports.checkServerIdentity = function checkServerIdentity(host, cert) { if (!valid) { const err = new Error( - `Hostname/IP doesn't match certificate's altnames: "${reason}"`); + `Hostname/IP doesn't match certificate's altnames: "${reason}"`); err.reason = reason; err.host = host; err.cert = cert; -- cgit v1.2.3