diff options
author | Rich Trott <rtrott@gmail.com> | 2017-07-05 09:21:40 -0700 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2017-07-07 13:18:19 -0700 |
commit | 0d22858d67f5f8f7959a55ceca23adafe12827d5 (patch) | |
tree | 9a0ff22b8b20243a59cf5ba6fed1f4eeb3755a7f /lib/tls.js | |
parent | 49d13a17b10b45b3d23e0fed41783769124f239c (diff) | |
download | node-new-0d22858d67f5f8f7959a55ceca23adafe12827d5.tar.gz |
lib: remove excess indentation
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 <benjamingr@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'lib/tls.js')
-rw-r--r-- | lib/tls.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; |