From 1f3c7940752bb228f56ca3d47788ca70c501d977 Mon Sep 17 00:00:00 2001 From: Sean <59426566+doingseanthings@users.noreply.github.com> Date: Wed, 1 Jan 2020 21:59:51 -0500 Subject: [PATCH] Fix typos in console logging The word Dilbert was missing the letter "l" in a couple places --- node_helper.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node_helper.js b/node_helper.js index b997a27..29ef5f7 100644 --- a/node_helper.js +++ b/node_helper.js @@ -16,11 +16,11 @@ module.exports = NodeHelper.create({ var url = "http://dilbert.com"; - console.log('-> Dibert request'); + console.log('-> Dilbert request'); request(url, function (error, response, body) { var $ = cheerio.load(body); var src = $(".img-comic").attr('src'); - console.log('Dibert -> ' + src); + console.log('Dilbert -> ' + src); self.sendSocketNotification("COMIC", { img : src }); @@ -28,4 +28,4 @@ module.exports = NodeHelper.create({ return; } }, -}); \ No newline at end of file +});