diff options
author | David Robillard <d@drobilla.net> | 2024-07-12 06:37:24 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-07-12 06:37:24 -0400 |
commit | 3c2158e66863e9feca3fa78b6963c9cde2a57f25 (patch) | |
tree | e5cf0ebed599e4a07112ecff3d87638f59d45cf8 /lv2/atom.lv2 | |
parent | bffbb82838133dac021fc5b016ef3df7962483e0 (diff) | |
download | lv2-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/atom.lv2')
-rw-r--r-- | lv2/atom.lv2/atom.ttl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lv2/atom.lv2/atom.ttl b/lv2/atom.lv2/atom.ttl index 03d3531..064d274 100644 --- a/lv2/atom.lv2/atom.ttl +++ b/lv2/atom.lv2/atom.ttl @@ -161,7 +161,7 @@ atom:Resource rdfs:subClassOf atom:Object ; rdfs:label "Resource" ; rdfs:comment "A named collection of properties with a URI." ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; atom:cType "LV2_Atom_Object" . atom:Blank @@ -169,7 +169,7 @@ atom:Blank rdfs:subClassOf atom:Object ; rdfs:label "Blank" ; rdfs:comment "An anonymous collection of properties without a URI." ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; atom:cType "LV2_Atom_Object" . atom:Sound |