@@ -11,7 +11,7 @@ aiocron - Crontabs for asyncio
1111Usage
1212=====
1313
14- ``aiocron `` provide a decorator to run function at time::
14+ ``aiocron `` provides a decorator to run function at time::
1515
1616 >>> import aiocron
1717 >>> import asyncio
@@ -31,7 +31,7 @@ You can also use it as an object::
3131 >>> attime.start()
3232 >>> asyncio.get_event_loop().run_forever()
3333
34- Your function still be available at ``attime.func ``
34+ Your function will still be available at ``attime.func ``
3535
3636You can also await a crontab. In this case, your coroutine can accept
3737arguments::
@@ -55,15 +55,15 @@ next hour::
5555
5656 >>> await crontab('0 * * * *').next()
5757
58- If you don't like the decorator magic you can set the function by yourself::
58+ If you don't like the decorator magic, you can set the function by yourself::
5959
6060 >>> cron = crontab('0 * * * *', func=yourcoroutine, start=False)
6161
62- ``aiocron `` use `cronsim <https://github.com/cuu508/cronsim >`_. Refer to
63- it's documentation to know more about crontab format.
62+ ``aiocron `` uses `cronsim <https://github.com/cuu508/cronsim >`_. Refer to
63+ its documentation to know more about the crontab format.
6464
65- From Dec 31, 2024, ``aiocron `` has switched from ``croniter `` to ``cronsim ``
65+ Since Dec 31, 2024, ``aiocron `` has switched from ``croniter `` to ``cronsim ``
6666for cron expression parsing (`PR #39 <https://github.com/gawel/aiocron/pull/39 >`_).
6767Please ensure that your cron expressions are valid in ``cronsim ``. For a comparison of
68- features between ``croniter `` and ``cronsim ``, refer to
68+ features between ``croniter `` and ``cronsim ``, refer to the
6969`cronsim documentation <https://github.com/cuu508/cronsim?tab=readme-ov-file#cron-expression-feature-matrix >`_.
0 commit comments