summaryrefslogtreecommitdiff
path: root/Lib/xmllib.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2000-06-28 14:48:01 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2000-06-28 14:48:01 +0000
commita05e293a219f0fbaf4301fa7a292b9578a523675 (patch)
treef5ed23b622ef5ba098ca41b890f95aa8caeb43ca /Lib/xmllib.py
parent7c014684c27ad646107b9f17882f43e7bd96f252 (diff)
downloadcpython-git-a05e293a219f0fbaf4301fa7a292b9578a523675.tar.gz
typos fixed by Rob Hooft
Diffstat (limited to 'Lib/xmllib.py')
-rw-r--r--Lib/xmllib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xmllib.py b/Lib/xmllib.py
index 4c6594be3e..37f3f91528 100644
--- a/Lib/xmllib.py
+++ b/Lib/xmllib.py
@@ -79,7 +79,7 @@ xmlns = re.compile('xmlns(?::(?P<ncname>'+_NCName+'))?$')
# special names to handle tags: start_foo and end_foo to handle <foo>
# and </foo>, respectively. The data between tags is passed to the
# parser by calling self.handle_data() with some data as argument (the
-# data may be split up in arbutrary chunks).
+# data may be split up in arbitrary chunks).
class XMLParser:
attributes = {} # default, to be overridden