From 2bc32503b0fc30f95ae93190d07e820b220b8e11 Mon Sep 17 00:00:00 2001 From: Anthony Postlethwaite Date: Thu, 7 Apr 2022 15:30:52 +1000 Subject: [PATCH] Spelling mistake --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36b1e20..a558216 100644 --- a/README.md +++ b/README.md @@ -296,7 +296,7 @@ The `recurring-job:` prefix is required on the action in order to execute an exi NOTE: `IRecurringJobFactory & RecurringJobFactory are now obsolete in MIFCore.Hangfire v1.1.0` -The `Hangfire.IRecurringJobManager` interface should be used when registering your recurring jobs in MIFCore. When a new job is registered, the `IRecurringJobManager` will check for any CRON overrides specifies in the `settings.json` and create or update your job in Hangfire. +The `Hangfire.IRecurringJobManager` interface should be used when registering your recurring jobs in MIFCore. When a new job is registered, the `IRecurringJobManager` will check for any CRON overrides specified in the `settings.json` and create or update your job in Hangfire. ```csharp recurringJobManager.CreateRecurringJob("MyJobName", y => y.RunMyJob(), Cron.Daily());