Skip to content

docs: Fix a few typos #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion carrot/backends/librabbitmq.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class Message(BaseMessage):
"""A message received by the broker.

Usually you don't insantiate message objects yourself, but receive
Usually you don't instantiate message objects yourself, but receive
them using a :class:`carrot.messaging.Consumer`.

:param backend: see :attr:`backend`.
Expand Down
2 changes: 1 addition & 1 deletion carrot/backends/pyamqplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class QueueAlreadyExistsWarning(UserWarning):
class Message(BaseMessage):
"""A message received by the broker.

Usually you don't insantiate message objects yourself, but receive
Usually you don't instantiate message objects yourself, but receive
them using a :class:`carrot.messaging.Consumer`.

:param backend: see :attr:`backend`.
Expand Down
2 changes: 1 addition & 1 deletion carrot/backends/pystomp.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class Message(BaseMessage):
"""A message received by the STOMP broker.

Usually you don't insantiate message objects yourself, but receive
Usually you don't instantiate message objects yourself, but receive
them using a :class:`carrot.messaging.Consumer`.

:param backend: see :attr:`backend`.
Expand Down
2 changes: 1 addition & 1 deletion carrot/messaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def flow(self, active):
content data.

This is a simple flow-control mechanism that a
peer can use to avoid oveflowing its queues or otherwise
peer can use to avoid overflowing its queues or otherwise
finding itself receiving more messages than it can process.
Note that this method is not intended for window control. The
peer that receives a request to stop sending content should
Expand Down
2 changes: 1 addition & 1 deletion carrot/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

def gen_unique_id():
"""Generate a unique id, having - hopefully - a very small chance of
collission.
collision.

For now this is provided by :func:`uuid.uuid4`.
"""
Expand Down