]> granicus.if.org Git - python/commitdiff
Typo fix.
authorGeorg Brandl <georg@python.org>
Sat, 14 Aug 2010 15:48:49 +0000 (15:48 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 14 Aug 2010 15:48:49 +0000 (15:48 +0000)
Doc/faq/library.rst

index 5965b6a76fbc99c5d6d212194b2414a494f3beeb..662f423c6fbe4f2c0e19613de4202e5584cbc37f 100644 (file)
@@ -666,8 +666,8 @@ Yes. Here's a simple example that uses urllib.request::
                                 '/cgi-bin/some-cgi-script', data=qs)
    msg, hdrs = req.read(), req.info()
 
-Note that in general for percent-encoded POST operations, query strings must be
-quoted by using :func:`urllib.parse.urlencode`.  For example to send name="Guy Steele,
+Note that in general for percent-encoded POST operations, query strings must be
+quoted using :func:`urllib.parse.urlencode`.  For example to send name="Guy Steele,
 Jr."::
 
    >>> import urllib.parse