External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
897B

  1. From 3f6e7285f93ec2304553dfc8c6bbbfbe05566b04 Mon Sep 17 00:00:00 2001
  2. From: David Robillard <d@drobilla.net>
  3. Date: Fri, 12 Mar 2021 23:36:30 -0500
  4. Subject: [PATCH] Make the type of patch:wildcard more precise
  5. It is more or less meaningless to have an explicit type of rdfs:Resource, and
  6. some tools don't like it, since everything (including classes and properties)
  7. is a Resource. Since this is an individual, owl:Thing is a better type.
  8. ---
  9. lv2/patch/patch.ttl | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/lv2/patch/patch.ttl b/lv2/patch/patch.ttl
  12. index 0fb2012f..c7f6d769 100644
  13. --- a/lv2/patch/patch.ttl
  14. +++ b/lv2/patch/patch.ttl
  15. @@ -236,7 +236,7 @@ patch:value
  16. rdfs:comment "The value of a property in a patch:Set message." .
  17. patch:wildcard
  18. - a rdfs:Resource ;
  19. + a owl:Thing ;
  20. rdfs:label "wildcard" ;
  21. rdfs:comment "A wildcard that matches any resource." .