From 50611d8bd944ec5adaa0ab4a135f04a8392aaf18 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 9 Dec 2020 21:37:47 -0500 Subject: [PATCH] ` => ' --- types/sherlock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/sherlock.js b/types/sherlock.js index 67b6c8fb..618ad702 100644 --- a/types/sherlock.js +++ b/types/sherlock.js @@ -8,7 +8,7 @@ module.exports = class SherlockType extends ArgumentType { validate(value) { const time = sherlock.parse(value); - if (!time.startDate) return `Please provide a valid starting time.`; + if (!time.startDate) return 'Please provide a valid starting time.'; return true; }