]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Update advanced.md
authorTom Christie <tom@tomchristie.com>
Fri, 6 Dec 2019 11:35:29 +0000 (11:35 +0000)
committerGitHub <noreply@github.com>
Fri, 6 Dec 2019 11:35:29 +0000 (11:35 +0000)
docs/advanced.md

index 6f8a4d9811127634f957f703ceb5f71466612e0e..27edac8650dab8a9cdb145f25ef7b1caec8abee4 100644 (file)
@@ -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