From 3c2158e66863e9feca3fa78b6963c9cde2a57f25 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 12 Jul 2024 06:37:24 -0400 Subject: 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. --- lv2/ui.lv2/ui.ttl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lv2/ui.lv2/ui.ttl') 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.""" . -- cgit v1.2.1