]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Simple typo fix (GH-24448)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 5 Feb 2021 18:44:45 +0000 (10:44 -0800)
committerGitHub <noreply@github.com>
Fri, 5 Feb 2021 18:44:45 +0000 (10:44 -0800)
(cherry picked from commit 5f18c223391eef8c7d01241b51a7b2429609dd84)

Co-authored-by: Andrew Tennikoff <atenni@users.noreply.github.com>
Doc/howto/urllib2.rst

index 046a88af62f0b3e31ddb2ce9cfc69642cc9cf366..12d525771ddc2876c5c6b3eb93722d5fdf01de35 100644 (file)
@@ -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.