Fix spelling mistakes

Address simple spelling issues.

Closes-Bug: #1751890
Change-Id: I034e619ca47b7b0eb6299dcd75f740b938212a4e
This commit is contained in:
Ville Skyttä 2018-02-27 13:35:25 +11:00 committed by Jamie Lennox
parent d9608f5f59
commit cd969eaded
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ As well as the basic:
- :py:meth:`~requests_mock.MockerCore.register_uri` - :py:meth:`~requests_mock.MockerCore.register_uri`
These methods correspond to the HTTP method of your request, so to mock POST requests you would use the :py:meth:`~requests_mock.MockerCore.post` function. These methods correspond to the HTTP method of your request, so to mock POST requests you would use the :py:meth:`~requests_mock.MockerCore.post` function.
Futher information about what can be matched from a request can be found at :doc:`matching` Further information about what can be matched from a request can be found at :doc:`matching`
Real HTTP Requests Real HTTP Requests
================== ==================

View File

@ -260,7 +260,7 @@ class Adapter(BaseAdapter, _RequestHistoryTracker):
# had different values. # had different values.
# Ideally case_sensitive would be a value passed to match() however # Ideally case_sensitive would be a value passed to match() however
# this would change the contract of matchers so we pass ito to the # this would change the contract of matchers so we pass ito to the
# proxy and the matcher seperately. # proxy and the matcher separately.
responses = [_MatcherResponse(**k) for k in response_list] responses = [_MatcherResponse(**k) for k in response_list]
matcher = _Matcher(method, matcher = _Matcher(method,
url, url,