diff options
-rw-r--r-- | lv2/lv2plug.in/ns/ext/message/message.h | 2 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/message/message.ttl | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lv2/lv2plug.in/ns/ext/message/message.h b/lv2/lv2plug.in/ns/ext/message/message.h index 728b836..d2f3b1d 100644 --- a/lv2/lv2plug.in/ns/ext/message/message.h +++ b/lv2/lv2plug.in/ns/ext/message/message.h @@ -41,6 +41,6 @@ #define LV2_MESSAGE__Set LV2_MESSAGE_URI "#Set" #define LV2_MESSAGE__add LV2_MESSAGE_URI "#add" #define LV2_MESSAGE__body LV2_MESSAGE_URI "#body" -#define LV2_MESSAGE__cause LV2_MESSAGE_URI "#cause" +#define LV2_MESSAGE__request LV2_MESSAGE_URI "#request" #endif /* LV2_MESSAGE_H */ diff --git a/lv2/lv2plug.in/ns/ext/message/message.ttl b/lv2/lv2plug.in/ns/ext/message/message.ttl index a22dea3..6f0d971 100644 --- a/lv2/lv2plug.in/ns/ext/message/message.ttl +++ b/lv2/lv2plug.in/ns/ext/message/message.ttl @@ -126,7 +126,7 @@ a msg:body that is a description of that subject. For example:</p> <pre class="turtle-code"> [] a msg:Response ; - msg:cause <get-request> ; + msg:request <get-request> ; msg:subject <something> ; msg:body [ eg:name "Something" ; @@ -146,7 +146,7 @@ example, the same response could be written:</p> [] a msg:Response ; - msg:cause <get-request> ; + msg:request <get-request> ; msg:subject <something> ; msg:body <something> . </pre> @@ -324,7 +324,7 @@ msg:body part of.</p> """ . -msg:cause +msg:request a rdf:Property , owl:ObjectProperty ; rdfs:domain msg:Response ; |