aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/ui.lv2/ui.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-07-12 06:37:24 -0400
committerDavid Robillard <d@drobilla.net>2024-07-12 06:37:24 -0400
commit3c2158e66863e9feca3fa78b6963c9cde2a57f25 (patch)
treee5cf0ebed599e4a07112ecff3d87638f59d45cf8 /lv2/ui.lv2/ui.ttl
parentbffbb82838133dac021fc5b016ef3df7962483e0 (diff)
downloadlv2-3c2158e66863e9feca3fa78b6963c9cde2a57f25.tar.xz
Use bare boolean literals
I'm not sure why these were written out in full, although vaguely recall something about rdflib having trouble with these. In any case, it seems to work now, and this is fundamental Turtle syntax that should be supported by everything. This is necessary for the lint tests to pass after improvements to serd that will rewrite these literals in this way.
Diffstat (limited to 'lv2/ui.lv2/ui.ttl')
-rw-r--r--lv2/ui.lv2/ui.ttl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lv2/ui.lv2/ui.ttl b/lv2/ui.lv2/ui.ttl
index e888988..c42992e 100644
--- a/lv2/ui.lv2/ui.ttl
+++ b/lv2/ui.lv2/ui.ttl
@@ -95,13 +95,13 @@ ui:binary
a rdf:Property ,
owl:ObjectProperty ;
owl:sameAs lv2:binary ;
- owl:deprecated "true"^^xsd:boolean ;
+ owl:deprecated true ;
rdfs:label "binary" ;
rdfs:comment "The shared library that a UI resides in." .
ui:makeSONameResident
a lv2:Feature ;
- owl:deprecated "true"^^xsd:boolean ;
+ owl:deprecated true ;
rdfs:label "make SO name resident" ;
rdfs:comment "UI binary must not be unloaded." .
@@ -188,7 +188,7 @@ ui:notifyType
ui:resize
a lv2:Feature ,
lv2:ExtensionData ;
- owl:deprecated "true"^^xsd:boolean ;
+ owl:deprecated true ;
rdfs:label "resize" ;
rdfs:comment """A feature that provides control of, and notifications about, a UI's size.""" .