From 349c4c98c2f18a575e8eb73e308419ce3b305921 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 30 Aug 2018 12:54:44 -0700 Subject: [PATCH] fix comment indentation --- index.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/index.js b/index.js index 921e1dc..e35ab71 100644 --- a/index.js +++ b/index.js @@ -13,14 +13,14 @@ exports.HOSTS = WINDOWS ? 'C:/Windows/System32/drivers/etc/hosts' : '/etc/hosts' - /** - * Get a list of the lines that make up the filePath. If the - * `preserveFormatting` parameter is true, then include comments, blank lines - * and other non-host entries in the result. - * - * @param {boolean} preserveFormatting - * @param {function(err, lines)=} cb - */ +/** + * Get a list of the lines that make up the filePath. If the + * `preserveFormatting` parameter is true, then include comments, blank lines + * and other non-host entries in the result. + * + * @param {boolean} preserveFormatting + * @param {function(err, lines)=} cb + */ exports.getFile = function (filePath, preserveFormatting, cb) { var lines = []