aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-03-22 19:29:25 +0100
committerDavid Robillard <d@drobilla.net>2020-03-28 17:10:05 +0100
commitf99eb16350e996e06914415e0546b85d110a3ef8 (patch)
tree60343de890487a8a8bd9b19b2df13257b65cc37f
parentdbeba1eef8bd7c5210d661fe768515d485ab5aad (diff)
downloadlv2-f99eb16350e996e06914415e0546b85d110a3ef8.tar.xz
lv2specgen: Use a consistent order for owl and rdfs metadata
-rwxr-xr-xlv2specgen/lv2specgen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index f3f39b6..6e9ba70 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -704,8 +704,8 @@ def docTerms(category, list, m, classlist, proplist, instalist):
terminfo = ""
extrainfo = ""
if category == 'Property':
- terminfo += owlInfo(term, m)
terminfo += rdfsPropertyInfo(term, m)
+ terminfo += owlInfo(term, m)
if category == 'Class':
terminfo += rdfsClassInfo(term, m)
extrainfo += owlRestrictionInfo(term, m)