diff options
author | Fernando Toledo <42938011+fernandohtr@users.noreply.github.com> | 2020-12-21 14:06:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 14:06:31 (GMT) |
commit | 711381dfb09fbd434cc3b404656f7fd306161a64 (patch) | |
tree | 552b8ea1e7c7d200bfd5b934378bc13ad3f4f996 /Lib/http | |
parent | f2dbfd7e20431f0bcf2b655aa876afec7fe03c6f (diff) | |
download | cpython-711381dfb09fbd434cc3b404656f7fd306161a64.zip cpython-711381dfb09fbd434cc3b404656f7fd306161a64.tar.gz cpython-711381dfb09fbd434cc3b404656f7fd306161a64.tar.bz2 |
Fix typo in docstring (GH-23515)
Diffstat (limited to 'Lib/http')
-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 a54679c..4eca93e 100644 --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -861,7 +861,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 |