summaryrefslogtreecommitdiffstats
path: root/Doc/library/urllib2.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-07-12 20:16:19 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-07-12 20:16:19 (GMT)
commit90f36730e2d50abbcaa395dc217a2213bc45a9f2 (patch)
tree6b70b0f12fe0aedfb8531edddbe58cb7dd58a437 /Doc/library/urllib2.rst
parent9c87a40786837062ece9b8cafb4843949853befa (diff)
downloadcpython-90f36730e2d50abbcaa395dc217a2213bc45a9f2.zip
cpython-90f36730e2d50abbcaa395dc217a2213bc45a9f2.tar.gz
cpython-90f36730e2d50abbcaa395dc217a2213bc45a9f2.tar.bz2
fix various doc typos #3320
Diffstat (limited to 'Doc/library/urllib2.rst')
-rw-r--r--Doc/library/urllib2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib2.rst b/Doc/library/urllib2.rst
index 6cab787..18f5af7 100644
--- a/Doc/library/urllib2.rst
+++ b/Doc/library/urllib2.rst
@@ -923,7 +923,7 @@ involved. For example, the :envvar:`http_proxy` environment variable is read to
obtain the HTTP proxy's URL.
This example replaces the default :class:`ProxyHandler` with one that uses
-programatically-supplied proxy URLs, and adds proxy authorization support with
+programmatically-supplied proxy URLs, and adds proxy authorization support with
:class:`ProxyBasicAuthHandler`. ::
proxy_handler = urllib2.ProxyHandler({'http': 'http://www.example.com:3128/'})