From 1d163ed5c1a49b2c3dc6d4534b559085d91e40c2 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 1 Oct 2018 17:30:56 +0000 Subject: [PATCH] Implement appel's suggestion (Crucial fix) --- commands/events/is-tuesday.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/events/is-tuesday.js b/commands/events/is-tuesday.js index c5eaff2e..8acd3588 100644 --- a/commands/events/is-tuesday.js +++ b/commands/events/is-tuesday.js @@ -13,6 +13,6 @@ module.exports = class IsTuesdayCommand extends Command { } run(msg) { - return msg.say(`Today is${isTuesday() ? '' : ' **not**'} Tuesday.`); + return msg.say(`Today **is${isTuesday() ? '' : ' not'}** Tuesday.`); } };