]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Fix typo in 0.14.0 changelog (#1148)
authorRiccardo Magliocchetti <riccardo.magliocchetti@gmail.com>
Sat, 8 Aug 2020 07:38:08 +0000 (09:38 +0200)
committerGitHub <noreply@github.com>
Sat, 8 Aug 2020 07:38:08 +0000 (08:38 +0100)
CHANGELOG.md

index c720c8828ab1c6e71697c4dbd97134cfb3c3f879..24f0091b8361f1bdb68ab8312d48890262cf3cb2 100644 (file)
@@ -14,7 +14,7 @@ The 0.14 release includes a range of improvements to the public API, intended on
 
 When upgrading you should be aware of the following public API changes. Note that deprecated usages will currently continue to function, but will issue warnings.
 
-* You should now use `httpx.codes` consistently in favour of `httpx.StatusCodes`.
+* You should now use `httpx.codes` consistently instead of `httpx.StatusCodes`.
 * Usage of `httpx.Timeout()` should now always include an explicit default. Eg. `httpx.Timeout(None, pool=5.0)`.
 * When using `httpx.Timeout()`, we now have more concisely named keyword arguments. Eg. `read=5.0`, instead of `read_timeout=5.0`.
 * Use `httpx.Limits()` instead of `httpx.PoolLimits()`, and `limits=...` instead of `pool_limits=...`.