diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-02-05 10:44:45 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 10:44:45 -0800 |
commit | b4796875d598b34f5f21cb13a8d3551574532595 (patch) | |
tree | f1de074d30308c5ff21a5ecb214a8b6e0f481581 | |
parent | build(deps): bump actions/upload-artifact from v2.2.1 to v2.2.2 (GH-24411) (diff) | |
download | cpython-b4796875d598b34f5f21cb13a8d3551574532595.tar.gz cpython-b4796875d598b34f5f21cb13a8d3551574532595.tar.bz2 cpython-b4796875d598b34f5f21cb13a8d3551574532595.zip |
Simple typo fix (GH-24448)
(cherry picked from commit 5f18c223391eef8c7d01241b51a7b2429609dd84)
Co-authored-by: Andrew Tennikoff <atenni@users.noreply.github.com>
-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. |