summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-11-18 19:48:27 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-11-18 19:48:27 (GMT)
commitb970142707815cc90a974810a9fc2464b3bcc977 (patch)
tree9b628dc20fcdc1002d41aa1e6480f23eecb54f07 /Doc/library
parent5d4dd3eeb290e3a1fde5c1113b28f0ccb18ceddb (diff)
downloadcpython-b970142707815cc90a974810a9fc2464b3bcc977.zip
cpython-b970142707815cc90a974810a9fc2464b3bcc977.tar.gz
cpython-b970142707815cc90a974810a9fc2464b3bcc977.tar.bz2
#10455: fix typo
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/urllib.request.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index 9df737d..c7c0815 100644
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -1280,7 +1280,7 @@ The following example uses no proxies at all, overriding environment settings::
The :mod:`urllib.response` module defines functions and classes which define a
minimal file like interface, including ``read()`` and ``readline()``. The
-typical response object is an addinfourl instance, which defines and ``info()``
+typical response object is an addinfourl instance, which defines an ``info()``
method and that returns headers and a ``geturl()`` method that returns the url.
Functions defined by this module are used internally by the
:mod:`urllib.request` module.