Skip to content

Commit f34a868

Browse files
committed
Fixing typos
1 parent f265a02 commit f34a868

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.cursor/rules/general.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ alwaysApply: true
66

77
# about docket
88
docket is a distributed background task system for Python functions with a focus
9-
on the scheduling of future work as seamlessly and efficiency as immediate work.
9+
on the scheduling of future work as seamlessly and efficiently as immediate work.
1010

1111
docket is built in Python and uses Redis as the message broker and storage system.
1212

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Docket is a distributed background task system for Python functions with a focus
2-
on the scheduling of future work as seamlessly and efficiency as immediate work.
2+
on the scheduling of future work as seamlessly and efficiently as immediate work.
33

44
[![PyPI - Version](https://img.shields.io/pypi/v/pydocket)](https://pypi.org/project/pydocket/)
55
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pydocket)](https://pypi.org/project/pydocket/)
@@ -96,7 +96,7 @@ The to run the test suite:
9696
pytest
9797
```
9898

99-
We aim to main 100% test coverage, which is required for all PRs to `docket`. We
99+
We aim to maintain 100% test coverage, which is required for all PRs to `docket`. We
100100
believe that `docket` should stay small, simple, understandable, and reliable, and that
101101
begins with testing all the dusty branches and corners. This will give us the
102102
confidence to upgrade dependencies quickly and to adapt to new versions of Redis over

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Welcome to docket
22

33
Docket is a distributed background task system for Python functions with a focus
4-
on the scheduling of future work as seamlessly and efficiency as immediate work.
4+
on the scheduling of future work as seamlessly and efficiently as immediate work.
55

66
[![PyPI - Version](https://img.shields.io/pypi/v/pydocket)](https://pypi.org/project/pydocket/)
77
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pydocket)](https://pypi.org/project/pydocket/)
@@ -66,6 +66,6 @@ docket integrates two modes of task execution:
6666
2. **Scheduled tasks** are pushed onto a Redis sorted set with a schedule time. A loop within each worker moves scheduled tasks onto the stream when their schedule time has arrived. This move is performed as a Lua script to ensure atomicity.
6767

6868
Docket requires a [Redis](http://redis.io/) server with Streams support (which was
69-
introduced in Redis 5.0.0). Docket is tested with Redis 6 and s7.
69+
introduced in Redis 5.0.0). Docket is tested with Redis 6 and 7.
7070

7171
For more detailed information, check out our [Getting Started](getting-started.md) guide or dive into the [API Reference](api-reference.md).

examples/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_free_port() -> int:
3030
break
3131

3232
url = f"redis://localhost:{port}/0"
33-
print("***** Redis is running on %s *****", url)
33+
print(f"***** Redis is running on {url} *****")
3434
try:
3535
yield url
3636
finally:

0 commit comments

Comments
 (0)