Fix typo to match library default (#1535)

Matches default given at https://github.com/encode/httpx/blob/master/httpx/_config.py#L359
This commit is contained in:
Louis Maddox 2021-03-25 11:03:47 +00:00 committed by GitHub
parent 437b55c520
commit 68cf1ff88a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -667,7 +667,7 @@ You can control the connection pool size using the `limits` keyword
argument on the client. It takes instances of `httpx.Limits` which define:
- `max_keepalive`, number of allowable keep-alive connections, or `None` to always
allow. (Defaults 10)
allow. (Defaults 20)
- `max_connections`, maximum number of allowable connections, or` None` for no limits.
(Default 100)