diff --git a/docs/API Reference.md b/docs/API Reference.md index 3d823e3c..b95eaad2 100644 --- a/docs/API Reference.md +++ b/docs/API Reference.md @@ -71,7 +71,7 @@ parse_list(address_list, strict=False, as_tuple=False) | strict | Operate parser in strict (stop at any error) or relaxed (attempt to recover and continue). (Default: False) | | as_tuple | Return just the parsed list addresses, or also the unparsed portions. (Default: False) | -*Return Value*: If opearting in strict mode, returns a list of parsed EmailAddress objects. If operating +*Return Value*: If operating in strict mode, returns a list of parsed EmailAddress objects. If operating in relaxed mode, can return a tuple that contains the parsed addresses and unparsable portions or just the parsed addresses in a list. @@ -106,7 +106,7 @@ validate_list(addr_list, as_tuple=True) | address_list | A delimiter (either `,` or `;`) separated list of addresses. (Maximum: 524288 characters) | | as_tuple | Return just the parsed list addresses, or also the unparsed portions. (Default: False) | -*Return Value*: If opearting in strict mode, returns a list of parsed EmailAddress objects. If operating +*Return Value*: If operating in strict mode, returns a list of parsed EmailAddress objects. If operating in relaxed mode, can return a tuple that contains the parsed addresses and unparsable portions or just the parsed addresses in a list. diff --git a/docs/User Manual.md b/docs/User Manual.md index e4e4cc2e..b6599491 100644 --- a/docs/User Manual.md +++ b/docs/User Manual.md @@ -274,7 +274,7 @@ can loose some information because of broken or unknown encodings. #### Parsing MIME messages For the following examples, the below MIME messages will be used as examples, they will be -refered to as `message_singlepart` and `message_multipart` respectivly. +referred to as `message_singlepart` and `message_multipart` respectivly. **message_singlepart**: ``` diff --git a/tests/addresslib/plugins/aol_test.py b/tests/addresslib/plugins/aol_test.py index ac75a866..ee922c45 100644 --- a/tests/addresslib/plugins/aol_test.py +++ b/tests/addresslib/plugins/aol_test.py @@ -22,7 +22,7 @@ def mock_exchanger_lookup(arg, metrics=False): def test_exchanger_lookup(): ''' - Test if exchanger lookup is occuring correctly. If this simple test + Test if exchanger lookup is occurring correctly. If this simple test fails that means custom grammar was hit. Then the rest of the tests can be mocked. Should always be run during deployment, can be skipped during development. diff --git a/tests/addresslib/plugins/gmail_test.py b/tests/addresslib/plugins/gmail_test.py index d910f51d..4107d3fc 100644 --- a/tests/addresslib/plugins/gmail_test.py +++ b/tests/addresslib/plugins/gmail_test.py @@ -23,7 +23,7 @@ def mock_exchanger_lookup(arg, metrics=False): def test_exchanger_lookup(): ''' - Test if exchanger lookup is occuring correctly. If this simple test + Test if exchanger lookup is occurring correctly. If this simple test fails that means custom grammar was hit. Then the rest of the tests can be mocked. Should always be run during deployment, can be skipped during development. diff --git a/tests/addresslib/plugins/google_test.py b/tests/addresslib/plugins/google_test.py index e59eabc3..4c0637e6 100644 --- a/tests/addresslib/plugins/google_test.py +++ b/tests/addresslib/plugins/google_test.py @@ -23,7 +23,7 @@ def mock_exchanger_lookup(arg, metrics=False): def test_exchanger_lookup(): ''' - Test if exchanger lookup is occuring correctly. If this simple test + Test if exchanger lookup is occurring correctly. If this simple test fails that means custom grammar was hit. Then the rest of the tests can be mocked. Should always be run during deployment, can be skipped during development. diff --git a/tests/addresslib/plugins/hotmail_test.py b/tests/addresslib/plugins/hotmail_test.py index d9dc9200..306854ff 100644 --- a/tests/addresslib/plugins/hotmail_test.py +++ b/tests/addresslib/plugins/hotmail_test.py @@ -22,7 +22,7 @@ def mock_exchanger_lookup(arg, metrics=False): def test_exchanger_lookup(): ''' - Test if exchanger lookup is occuring correctly. If this simple test + Test if exchanger lookup is occurring correctly. If this simple test fails that means custom grammar was hit. Then the rest of the tests can be mocked. Should always be run during deployment, can be skipped during development. diff --git a/tests/addresslib/plugins/icloud_test.py b/tests/addresslib/plugins/icloud_test.py index e6a266f6..a37eab9f 100644 --- a/tests/addresslib/plugins/icloud_test.py +++ b/tests/addresslib/plugins/icloud_test.py @@ -22,7 +22,7 @@ def mock_exchanger_lookup(arg, metrics=False): def test_exchanger_lookup(): ''' - Test if exchanger lookup is occuring correctly. If this simple test + Test if exchanger lookup is occurring correctly. If this simple test fails that means custom grammar was hit. Then the rest of the tests can be mocked. Should always be run during deployment, can be skipped during development. diff --git a/tests/addresslib/plugins/yahoo_test.py b/tests/addresslib/plugins/yahoo_test.py index 6b367133..a687422e 100644 --- a/tests/addresslib/plugins/yahoo_test.py +++ b/tests/addresslib/plugins/yahoo_test.py @@ -22,7 +22,7 @@ def mock_exchanger_lookup(arg, metrics=False): def test_exchanger_lookup(): ''' - Test if exchanger lookup is occuring correctly. If this simple test + Test if exchanger lookup is occurring correctly. If this simple test fails that means custom grammar was hit. Then the rest of the tests can be mocked. Should always be run during deployment, can be skipped during development. diff --git a/tests/mime/message/headers/headers_test.py b/tests/mime/message/headers/headers_test.py index fdb11bda..e24625e6 100644 --- a/tests/mime/message/headers/headers_test.py +++ b/tests/mime/message/headers/headers_test.py @@ -57,7 +57,7 @@ def headers_multiple_values_test(): h.add('Received', '1') eq_(['1', '2', '4'], h.getall('Received')) - # use prepend to insert header in the begining of the list + # use prepend to insert header in the beginning of the list h.prepend('Received', '0') eq_(['0', '1', '2', '4'], h.getall('Received'))