diff --git a/README.md b/README.md index 8f89042..0c73412 100644 --- a/README.md +++ b/README.md @@ -85,8 +85,8 @@ def now(): cron = Scheduler() cron.add('2,4:**:*0:00,15,30,45', now) -cron.add('2,4:**:59:59', cron.stop) cron.start() +cron.add('2,4:**:59:59', cron.stop) ``` ____