diff --git a/README.md b/README.md index c861a49..5a7c6ab 100644 --- a/README.md +++ b/README.md @@ -84,8 +84,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) ``` ____