diff options
author | Andrew Tennikoff <atenni@users.noreply.github.com> | 2021-02-06 05:17:01 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 10:17:01 -0800 |
commit | 5f18c223391eef8c7d01241b51a7b2429609dd84 (patch) | |
tree | b4a560d6c21952c746d39a06f4eba9bda6b53173 /Doc | |
parent | Fix a typo in a deprecation warning (GH-24423) (diff) | |
download | cpython-5f18c223391eef8c7d01241b51a7b2429609dd84.tar.gz cpython-5f18c223391eef8c7d01241b51a7b2429609dd84.tar.bz2 cpython-5f18c223391eef8c7d01241b51a7b2429609dd84.zip |
Simple typo fix (GH-24448)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/urllib2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst index 046a88af62f..12d525771dd 100644 --- a/Doc/howto/urllib2.rst +++ b/Doc/howto/urllib2.rst @@ -97,7 +97,7 @@ schemes. For example, you can make an FTP request like so:: In the case of HTTP, there are two extra things that Request objects allow you to do: First, you can pass data to be sent to the server. Second, you can pass -extra information ("metadata") *about* the data or the about request itself, to +extra information ("metadata") *about* the data or about the request itself, to the server - this information is sent as HTTP "headers". Let's look at each of these in turn. |