From 667a2f15197e04fca98d89e5cfcc3a7ad208eeb2 Mon Sep 17 00:00:00 2001 From: Richard Honor Date: Mon, 25 Mar 2019 12:29:06 +0000 Subject: [PATCH] [node-cron] Fixed linting error --- types/node-cron/node-cron-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/node-cron/node-cron-tests.ts b/types/node-cron/node-cron-tests.ts index a5c92b5238..f987d41334 100644 --- a/types/node-cron/node-cron-tests.ts +++ b/types/node-cron/node-cron-tests.ts @@ -48,7 +48,7 @@ if (valid && !invalid) { // check timezones are accepted from the string literal const tast4 = cron.schedule('* * * * *', () => { - log('will execute every minute until stopped') + log('will execute every minute until stopped'); }, { timezone: 'Europe/London' }); tast4.destroy();