diff --git a/doc/source/mocker.rst b/doc/source/mocker.rst index f7a2a85..84894e7 100644 --- a/doc/source/mocker.rst +++ b/doc/source/mocker.rst @@ -114,7 +114,7 @@ As well as the basic: - :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. -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 ================== diff --git a/requests_mock/adapter.py b/requests_mock/adapter.py index c344479..2fab0cb 100644 --- a/requests_mock/adapter.py +++ b/requests_mock/adapter.py @@ -260,7 +260,7 @@ class Adapter(BaseAdapter, _RequestHistoryTracker): # had different values. # Ideally case_sensitive would be a value passed to match() however # 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] matcher = _Matcher(method, url,