Skip to content

Commit 1d1e86f

Browse files
authored
Merge pull request #45 from MasterKia/master
Minor corrections
2 parents eb3ae70 + 24f243e commit 1d1e86f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ aiocron - Crontabs for asyncio
1111
Usage
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

3636
You can also await a crontab. In this case, your coroutine can accept
3737
arguments::
@@ -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``
6666
for cron expression parsing (`PR #39 <https://github.com/gawel/aiocron/pull/39>`_).
6767
Please 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

Comments
 (0)