summaryrefslogtreecommitdiff
path: root/python/libxml.py
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2020-03-08 17:19:42 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2020-03-08 17:41:53 +0100
commit20c60886e42c942e6c45a3a99d583e4d3269a1c1 (patch)
tree356da033b696b45954882b69a60335d922cdd0e5 /python/libxml.py
parent2a7b66846ef419a4da4ed60f863449f3498a1cc5 (diff)
downloadlibxml2-20c60886e42c942e6c45a3a99d583e4d3269a1c1.tar.gz
Fix typos
Resolves #133.
Diffstat (limited to 'python/libxml.py')
-rw-r--r--python/libxml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/libxml.py b/python/libxml.py
index 2466cc9f..1e458d17 100644
--- a/python/libxml.py
+++ b/python/libxml.py
@@ -392,7 +392,7 @@ class xmlCore:
last = property(get_last, None, None, "Last sibling node")
next = property(get_next, None, None, "Next sibling node")
prev = property(get_prev, None, None, "Previous sibling node")
- properties = property(get_properties, None, None, "List of properies")
+ properties = property(get_properties, None, None, "List of properties")
content = property(get_content, None, None, "Content of this node")
name = property(get_name, None, None, "Node name")
type = property(get_type, None, None, "Node type")