From e61c940d23add1a3db0937bb00e680adceaba613 Mon Sep 17 00:00:00 2001 From: Ben Jones Date: Fri, 24 Jul 2020 11:53:27 +1200 Subject: [PATCH] fix typo on skipping/scheduled log message --- src/cron.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cron.ts b/src/cron.ts index 087d23a..5f52da4 100644 --- a/src/cron.ts +++ b/src/cron.ts @@ -17,7 +17,7 @@ const runCronForLocation = (name: string, location: Location) => { lock.crons[name] = { lastRun: Date.now() } writeLock(lock) } else { - console.log(`${name.yellow} ▶ Skipping. Sheduled for: ${parsed.next().toString().underline.blue}`) + console.log(`${name.yellow} ▶ Skipping. Scheduled for: ${parsed.next().toString().underline.blue}`) } } @@ -30,4 +30,4 @@ export const runCron = () => { runCronForLocation(name, location) console.log('\nFinished!'.underline + ' 🎉') -} \ No newline at end of file +}