From 2b9892b6593fc0497f403f51c867f903a1c39d36 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 12 Oct 2018 00:59:12 +0000 Subject: [PATCH] Fix lint --- commands/search/mayo-clinic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/mayo-clinic.js b/commands/search/mayo-clinic.js index 33156a23..36d66e52 100644 --- a/commands/search/mayo-clinic.js +++ b/commands/search/mayo-clinic.js @@ -28,7 +28,7 @@ module.exports = class MayoClinicCommand extends Command { const location = await this.search(query); if (!location) return msg.say('Could not find any results.'); const data = await this.fetchDisease(location); - if (typeof data === 'string') return msg.say(`I found a match, but it\'s not a disease: ${data}`); + if (typeof data === 'string') return msg.say(`I found a match, but it's not a disease: ${data}`); const embed = new MessageEmbed() .setColor(0x0044B3) .setAuthor('Mayo Clinic', 'https://i.imgur.com/9zdulOS.jpg', 'https://www.mayoclinic.org/')