Skip to content

Commit

Permalink
replace reciev -> receiv (spelling fix)
Browse files Browse the repository at this point in the history
corrects all instances and variations of 'recieve' to 'receive'
  • Loading branch information
eseiver committed Feb 12, 2018
1 parent 432dd61 commit 708fb51
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions O365/fluent_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class Message(object):
'''
Management of the process of sending, recieving, reading, and editing emails.
Management of the process of sending, receiving, reading, and editing emails.
Note: the get and set methods are technically superflous. You can get more through control over
a message you are trying to craft throught he use of editing the message.json, but these
Expand Down Expand Up @@ -45,7 +45,7 @@ class Message(object):

def __init__(self, json=None, auth=None, verify=True):
'''
Makes a new message wrapper for sending and recieving messages.
Makes a new message wrapper for sending and receiving messages.
Keyword Arguments:
json (default = None) -- Takes json if you have a pre-existing message to create from.
Expand All @@ -64,7 +64,7 @@ def __init__(self, json=None, auth=None, verify=True):

self.auth = auth
self.attachments = []
self.reciever = None
self.receiver = None

self.verify = verify

Expand Down
6 changes: 3 additions & 3 deletions O365/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class Message(object):
'''
Management of the process of sending, recieving, reading, and editing emails.
Management of the process of sending, receiving, reading, and editing emails.
Note: the get and set methods are technically superflous. You can get more through control over
a message you are trying to craft throught he use of editing the message.json, but these
Expand Down Expand Up @@ -44,7 +44,7 @@ class Message(object):

def __init__(self, json=None, auth=None, verify=True):
'''
Makes a new message wrapper for sending and recieving messages.
Makes a new message wrapper for sending and receiving messages.
Keyword Arguments:
json (default = None) -- Takes json if you have a pre-existing message to create from.
Expand All @@ -63,7 +63,7 @@ def __init__(self, json=None, auth=None, verify=True):

self.auth = auth
self.attachments = []
self.reciever = None
self.receiver = None

self.verify = verify

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ for att in m.attachments:
processAttachment(att,resp)
#various un-related bits left out for brevity.
```
The attachment class stores the files as base64 encoded files. But this doesn't matter to you! The attachment class can work with you if you want to just send/recieve raw binary or base64. You can also just give it a path to a file if you want to creat an attachment:
The attachment class stores the files as base64 encoded files. But this doesn't matter to you! The attachment class can work with you if you want to just send/receive raw binary or base64. You can also just give it a path to a file if you want to creat an attachment:
```python
att = Attachment(path=path)
```
Expand Down

0 comments on commit 708fb51

Please sign in to comment.