Fix doc capitalization (#1460)

This commit is contained in:
Daniel Saxton 2021-02-06 17:23:30 -06:00 committed by GitHub
parent 89fb0cbc69
commit 9542a17831
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ CLIENT_TRAFFIC_SECRET_0 XXXX
Valid values: a filename
if this environment variable is set then HTTPX will load
If this environment variable is set then HTTPX will load
CA certificate from the specified file instead of the default
location.
@ -124,7 +124,7 @@ SSL_CERT_FILE=/path/to/ca-certs/ca-bundle.crt python -c "import httpx; httpx.get
Valid values: a directory
if this environment variable is set then HTTPX will load
If this environment variable is set then HTTPX will load
CA certificates from the specified location instead of the default
location.

View File

@ -26,7 +26,7 @@ class codes(IntEnum):
obj = int.__new__(cls, value) # type: ignore
obj._value_ = value
obj.phrase = phrase
obj.phrase = phrase # type: ignore
return obj
def __str__(self) -> str: