--- a/rdf-primer/index.html Thu Nov 28 12:35:43 2013 +0100
+++ b/rdf-primer/index.html Thu Nov 28 12:53:54 2013 +0100
@@ -160,7 +160,7 @@
originally created. </p>
<p>In particular RDF can be used to publish and interlink data on the Web.
- For example retrieving <code>http://www.example.com/bob</code>
+ For example retrieving <code>http://www.example.org/bob</code>
could provide data about Bob, including the fact that he
knows Alice, as identified by her IRI.
Retrieving Alice's IRI could then provide more data about her, including links
@@ -356,7 +356,7 @@
<p>Literals may only appear in the <strong>object position</strong> of a triple.</p>
- <p>The RDF Concepts document provides a
+ <p>The RDF Concepts document provides a (non-exhaustive)
<a href="http://www.w3.org/TR/rdf11-concepts/#section-Datatypes">list
of datatypes</a>. This includes many datatypes defined by XML
Schema, such as string, boolean, integer, decimal and date. </p>
@@ -403,7 +403,7 @@
<p>For example, the
statements in the <a href="#subsection-triple">first example</a> could be grouped in two
graphs. A first graph could be provided by a social networking
- site and identified by <code>http://example.com/bob</code>:</p>
+ site and identified by <code>http://example.org/bob</code>:</p>
<pre>
<Bob> <is a> <person>.
@@ -424,15 +424,15 @@
<pre>
<Leonardo da Vinci> <is the creator of> <the Mona Lisa>.
- <This video document> <is about> <the Mona Lisa>
+ <Video xyz> <is about> <the Mona Lisa>
</pre>
<p>We can then make statements about these two graphs, for
example adding license and provenance information:</p>
<pre>
- <http://example.com/bob> <is published by> <http://example.org>.
- <http://example.com/bob> <has license> <http://creativecommons.org/licenses/by/3.0/>.
+ <http://example.org/bob> <is published by> <http://example.org>.
+ <http://example.org/bob> <has license> <http://creativecommons.org/licenses/by/3.0/>.
</pre>
<p>Multiple graphs in a RDF document constitute an <a