From f207706a7ca2050ae86a468b416f45309cbfc591 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 16 Oct 2020 12:12:14 +0200 Subject: Fix HTML character entities in documentation Not all of these actually show up in the output, but it's unnecessary to use these in Markdown anyway. --- lv2/patch/patch.meta.ttl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lv2/patch') diff --git a/lv2/patch/patch.meta.ttl b/lv2/patch/patch.meta.ttl index 549757a..ebe0807 100644 --- a/lv2/patch/patch.meta.ttl +++ b/lv2/patch/patch.meta.ttl @@ -222,7 +222,7 @@ remove all properties with the given predicate. For example: :::turtle [] a patch:Patch ; - patch:subject <something> ; + patch:subject ; patch:add [ eg:name "New name" ; eg:age 42 ; @@ -244,7 +244,7 @@ previous version is replaced. :::turtle [] a patch:Put ; - patch:subject <something> ; + patch:subject ; patch:body [ eg:name "New name" ; eg:age 42 ; @@ -273,7 +273,7 @@ the property before setting the new value. For example: :::turtle [] a patch:Set ; - patch:subject <something> ; + patch:subject ; patch:property eg:name ; patch:value "New name" . @@ -282,7 +282,7 @@ Which is equivalent to: :::turtle [] a patch:Patch ; - patch:subject <something> ; + patch:subject ; patch:add [ eg:name "New name" ; ] ; @@ -357,10 +357,10 @@ This is used to list properties that can be changed, for example to allow user interfaces to present appropriate controls. For example: :::turtle - @prefix eg: <http://example.org/> . - @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . - @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . - @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + @prefix eg: . + @prefix rdf: . + @prefix rdfs: . + @prefix xsd: . eg:title a rdf:Property ; -- cgit v1.2.1