From ddc4885543ec4f94f6bfa2e4d97cb2407aef90fa Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Fri, 6 Dec 2019 11:35:29 +0000 Subject: [PATCH] Update advanced.md --- docs/advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced.md b/docs/advanced.md index 6f8a4d98..27edac86 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -407,7 +407,7 @@ If you're using a `Client()` instance, then you should pass any SSL settings whe client = httpx.Client(verify=False) ``` -The `client.get(...)` method and other request methods *do not* changing the SSL settings on a per-request basis. If you need different SSL settings in different cases you should use more that one client instance, with different settings on each. Each client will then be using an isolated connection pool with a specific fixed SSL configuration on all connections within that pool. +The `client.get(...)` method and other request methods *do not* support changing the SSL settings on a per-request basis. If you need different SSL settings in different cases you should use more that one client instance, with different settings on each. Each client will then be using an isolated connection pool with a specific fixed SSL configuration on all connections within that pool. ### Making HTTPS requests to a local server -- 2.47.3