diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-12-21 14:29:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 14:29:57 (GMT) |
commit | b4b323ce1afa13f3d60ddb63261743dd94986b81 (patch) | |
tree | 1773c8e8fee62d68bd8f8ed8b950cbd22754fb92 | |
parent | 409ce4a09e4f96ca9b251c19f5819205aae9ae34 (diff) | |
download | cpython-b4b323ce1afa13f3d60ddb63261743dd94986b81.zip cpython-b4b323ce1afa13f3d60ddb63261743dd94986b81.tar.gz cpython-b4b323ce1afa13f3d60ddb63261743dd94986b81.tar.bz2 |
Fix typo in docstring (GH-23515)
(cherry picked from commit 711381dfb09fbd434cc3b404656f7fd306161a64)
Co-authored-by: Fernando Toledo <42938011+fernandohtr@users.noreply.github.com>
-rw-r--r-- | Lib/http/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/client.py b/Lib/http/client.py index c2ad047..16afc87 100644 --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -846,7 +846,7 @@ class HTTPConnection: the endpoint passed to `set_tunnel`. This done by sending an HTTP CONNECT request to the proxy server when the connection is established. - This method must be called before the HTML connection has been + This method must be called before the HTTP connection has been established. The headers argument should be a mapping of extra HTTP headers to send |