From cd969eadedb2c0b380679d26b6669b16ecd9ebab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 27 Feb 2018 13:35:25 +1100 Subject: [PATCH] Fix spelling mistakes Address simple spelling issues. Closes-Bug: #1751890 Change-Id: I034e619ca47b7b0eb6299dcd75f740b938212a4e --- doc/source/mocker.rst | 2 +- requests_mock/adapter.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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,