summaryrefslogtreecommitdiffstats
path: root/Lib/urllib2.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2002-10-11 17:27:55 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2002-10-11 17:27:55 (GMT)
commite1906637422cd0cdedaa46736f3360e424384081 (patch)
treea3155009c6c090ae56dfa0ce459d4eb741fe0ef3 /Lib/urllib2.py
parent96f1129de80c6cddba7a45db86eb09579221704e (diff)
downloadcpython-e1906637422cd0cdedaa46736f3360e424384081.zip
cpython-e1906637422cd0cdedaa46736f3360e424384081.tar.gz
cpython-e1906637422cd0cdedaa46736f3360e424384081.tar.bz2
Typo in docstring
Diffstat (limited to 'Lib/urllib2.py')
-rw-r--r--Lib/urllib2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py
index a8fcc35..f2e854a 100644
--- a/Lib/urllib2.py
+++ b/Lib/urllib2.py
@@ -5,7 +5,7 @@ which accepts a string containing a URL or a Request object (described
below). It opens the URL and returns the results as file-like
object; the returned object has some extra methods described below.
-The OpenerDirectory manages a collection of Handler objects that do
+The OpenerDirector manages a collection of Handler objects that do
all the actual work. Each Handler implements a particular protocol or
option. The OpenerDirector is a composite object that invokes the
Handlers needed to open the requested URL. For example, the