mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix spelling mistake of receive
There are a few spelling mistakes for `receive` in the code. Signed-off-by: Benjamin Drung <benjamin.drung@ionos.com>
This commit is contained in:
parent
51bebd9c03
commit
04d0bdbc76
5 changed files with 7 additions and 7 deletions
|
@ -891,7 +891,7 @@ Changelog for v2015.8.1..v2015.8.2
|
|||
|
||||
* 730d0f95e7 Fix typo an transfered -> transferred
|
||||
|
||||
* c7e7884de2 Fix typo an recieved -> received
|
||||
* c7e7884de2 Fix typo of received
|
||||
|
||||
* 50eea287f3 Fix typo an managment -> management
|
||||
|
||||
|
|
|
@ -1710,14 +1710,14 @@ Changelog for v2016.3.1..v2016.3.2
|
|||
|
||||
* 887a415138 Adds new Understanding Jinja topic, and fixes several Jinja doc issues. Removes the "Full list of builtin ..." from each module reference list, leaving just the module type for scanability.
|
||||
|
||||
* **PR** `#33900`_: (`amendlik`_) Document sudo policy for gitfs post-recieve hook
|
||||
* **PR** `#33900`_: (`amendlik`_) Document sudo policy for gitfs post-receive hook
|
||||
@ *2016-06-14 01:04:35 UTC*
|
||||
|
||||
* a400f6a6c3 Merge pull request `#33900`_ from amendlik/gitfs-hook-doc
|
||||
|
||||
* b4a28e2684 Add clarifying documentation about the need for sudo in the git hook
|
||||
|
||||
* 1046279cb7 Document sudo policy for gitfs post-recieve hook
|
||||
* 1046279cb7 Document sudo policy for gitfs post-receive hook
|
||||
|
||||
* **PR** `#33980`_: (`twangboy`_) Use full path to python.exe
|
||||
@ *2016-06-14 00:46:14 UTC*
|
||||
|
|
|
@ -26,12 +26,12 @@ Request Server
|
|||
==============
|
||||
|
||||
The request server implements a request / reply paradigm. Every request sent by
|
||||
the client must recieve exactly one reply.
|
||||
the client must receive exactly one reply.
|
||||
|
||||
Request Client
|
||||
==============
|
||||
|
||||
The request client sends requests to a Request Server and recieves a reply message.
|
||||
The request client sends requests to a Request Server and receives a reply message.
|
||||
|
||||
|
||||
.. toctree::
|
||||
|
|
|
@ -543,7 +543,7 @@ class LinodeAPIv4(LinodeAPI):
|
|||
|
||||
if status_code == 429:
|
||||
log.debug(
|
||||
"recieved rate limit; retrying in %d seconds", ratelimit_sleep
|
||||
"received rate limit; retrying in %d seconds", ratelimit_sleep
|
||||
)
|
||||
time.sleep(ratelimit_sleep)
|
||||
continue
|
||||
|
|
|
@ -207,7 +207,7 @@ class PublishClient:
|
|||
|
||||
def on_recv(self, callback):
|
||||
"""
|
||||
Add a message handler when we recieve a message from the PublishServer
|
||||
Add a message handler when we receive a message from the PublishServer
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue