--- a/model/prov-n.html Tue May 15 22:53:13 2012 +0100
+++ b/model/prov-n.html Wed May 16 09:17:03 2012 +0100
@@ -1119,16 +1119,16 @@
<div class="anexample">
<pre class="codeexample">
-wasAttributedTo(id; e, ag, [ex:license="cc:attributionURL" %% "xsd:QName"])
+wasAttributedTo(id; e, ag, [ex:license='cc:attributionURL' ])
</pre>
<p> Here <span class="name">id</span> is the optional attribution identifier, <span class="name">e</span> is an entity identifier,
<span class="name">ag</span> is the identifier of the agent to whom the entity is abscribed,
-and <span class="name">[ex:license="cc:attributionURL" %% "xsd:QName"]</span> are optional attributes. </p>
+and <span class="name">[ex:license='cc:attributionURL' ]</span> are optional attributes. </p>
The remaining examples show cases where some of the optionals are omitted.
<pre class="codeexample">
wasAttributedTo(e, ag)
-wasAttributedTo(e, ag, [ex:license="cc:attributionURL" %% "xsd:QName"])
+wasAttributedTo(e, ag, [ex:license='cc:attributionURL' ])
</pre>
</div>
@@ -2244,8 +2244,8 @@
<p>The entity <span class="name">ag</span> is a person (type: <span class="name">prov:Person</span>), whereas the entity
<span class="name">pl</span> is a plan (type: <span class="name">prov:Plan</span>).</p>
<pre class="codeexample">
-agent(ag,[prov:type="prov:Person" %% xsd:QName])
-entity(pl,[prov:type="prov:Plan" %% xsd:QName])
+agent(ag, [ prov:type='prov:Person' ])
+entity(pl, [ prov:type='prov:Plan' ])
</pre>
</div>
@@ -2341,7 +2341,7 @@
activity(a1, 2011-11-16T16:05:00, -,[prov:type="edit"])
wasGeneratedBy(e2, a1, -, [ex:fct="save"])
wasAssociatedWith(a1, ag2, -, [prov:role="author"])
- agent(ag2, [ prov:type="prov:Person" %% xsd:QName, ex:name="Bob" ])
+ agent(ag2, [ prov:type='prov:Person' , ex:name="Bob" ])
endBundle
</pre>