diff options
author | Omer Katz <omer.drow@gmail.com> | 2021-02-28 17:06:51 +0200 |
---|---|---|
committer | Omer Katz <omer.drow@gmail.com> | 2021-02-28 17:06:51 +0200 |
commit | cd7ede99dd28af7f2191c4bdb5b0ffc7489f7fdb (patch) | |
tree | 9d9c6c7687a45e93fbfa98564624caa0669b30b5 | |
parent | 1f599c7213b097df07d0afd7868072ff9febf4da (diff) | |
download | py-amqp-cd7ede99dd28af7f2191c4bdb5b0ffc7489f7fdb.tar.gz |
Fix typos.
-rw-r--r-- | amqp/channel.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/amqp/channel.py b/amqp/channel.py index b28d5cf..dcf02c0 100644 --- a/amqp/channel.py +++ b/amqp/channel.py @@ -298,7 +298,7 @@ class Channel(AbstractChannel): This method asks the peer to pause or restart the flow of 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 @@ -322,7 +322,7 @@ class Channel(AbstractChannel): A peer MAY use the Channel.Flow method to throttle incoming content data for internal reasons, for example, - when exchangeing data over a slower connection. + when exchanging data over a slower connection. RULE: @@ -347,7 +347,7 @@ class Channel(AbstractChannel): This method asks the peer to pause or restart the flow of 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 @@ -371,7 +371,7 @@ class Channel(AbstractChannel): A peer MAY use the Channel.Flow method to throttle incoming content data for internal reasons, for example, - when exchangeing data over a slower connection. + when exchanging data over a slower connection. RULE: @@ -1398,7 +1398,7 @@ class Channel(AbstractChannel): This method cancels a consumer. This does not affect already delivered messages, but it does mean the server will not send any more messages for that consumer. The client may receive - an abitrary number of messages in between sending the cancel + an arbitrary number of messages in between sending the cancel method and receiving the cancel-ok reply. RULE: |