--- a/rdf-primer/index.html Sun Feb 16 23:12:40 2014 +0100
+++ b/rdf-primer/index.html Sun Feb 16 23:26:43 2014 +0100
@@ -687,7 +687,7 @@
In its basic form a triple in Turtle looks this:<P>
<pre class="example">
- <http://example.org/bob#me> <http://xmlns.com/foaf/0.1/knows> <http://example.org/alice#me> .
+<http://example.org/bob#me> <http://xmlns.com/foaf/0.1/knows> <http://example.org/alice#me> .
</pre>
<p>In Turtle full IRIs are enclosed in angle brackets (<code><></code>);
@@ -1156,7 +1156,7 @@
06 </p>
07 <p>
08 Bob is interested in <a rel="http://xmlns.com/foaf/0.1/topic_interest"
-09 href="http://www.wikidata.org/entity/Q12418">the Mona Lisa</a>.
+09 href="http://www.wikidata.org/entity/Q12418">the Mona Lisa</a>.
10 </p>
11 </div>
12 <div about="http://www.wikidata.org/entity/Q12418">
@@ -1217,23 +1217,23 @@
<pre class="example" id="rdf-xml-example">
01 <?xml version="1.0" encoding="utf-8"?>
02 <rdf:RDF
-03 xmlns:dcterms="http://purl.org/dc/terms/"
-04 xmlns:foaf="http://xmlns.com/foaf/0.1/"
-05 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-06 xmlns:schema="http://schema.org/">
-07 <rdf:Description rdf:about="http://example.org/bob#me">
-08 <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
-09 <schema:birthDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">1990-07-04</schema:birthDate>
-10 <foaf:knows rdf:resource="http://example.org/alice#me"/>
-11 <foaf:topic_interest rdf:resource="http://www.wikidata.org/entity/Q12418"/>
-12 </rdf:Description>
-13 <rdf:Description rdf:about="http://www.wikidata.org/entity/Q12418">
-14 <dcterms:title>Mona Lisa</dcterms:title>
-15 <dcterms:creator rdf:resource="http://dbpedia.org/resource/Leonardo_da_Vinci"/>
-16 </rdf:Description>
-17 <rdf:Description rdf:about="http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619">
-18 <dcterms:subject rdf:resource="http://www.wikidata.org/entity/Q12418"/>
-19 </rdf:Description>
+03 xmlns:dcterms="http://purl.org/dc/terms/"
+04 xmlns:foaf="http://xmlns.com/foaf/0.1/"
+05 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+06 xmlns:schema="http://schema.org/">
+07 <rdf:Description rdf:about="http://example.org/bob#me">
+08 <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+09 <schema:birthDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">1990-07-04</schema:birthDate>
+10 <foaf:knows rdf:resource="http://example.org/alice#me"/>
+11 <foaf:topic_interest rdf:resource="http://www.wikidata.org/entity/Q12418"/>
+12 </rdf:Description>
+13 <rdf:Description rdf:about="http://www.wikidata.org/entity/Q12418">
+14 <dcterms:title>Mona Lisa</dcterms:title>
+15 <dcterms:creator rdf:resource="http://dbpedia.org/resource/Leonardo_da_Vinci"/>
+16 </rdf:Description>
+17 <rdf:Description rdf:about="http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619">
+18 <dcterms:subject rdf:resource="http://www.wikidata.org/entity/Q12418"/>
+19 </rdf:Description>
20 </rdf:RDF>
</pre>
@@ -1246,12 +1246,25 @@
is used to define sets of triples that have as subject the IRI
specified by the <code>about</code> attribute. The first description
block (line 7-12) has four sub-elements. The name of the subelement is
-an IRI representing an RDF proerty, e.g., <code>rdf:type</code> (line 8). Here, each
-subelement represents one triple. In cases where the object of the
-triple is also an IRI
+an IRI representing an RDF property, e.g., <code>rdf:type</code> (line 8). Here, each
+subelement represents one triple. For example, line 10 corresponds to
+the triple:</p>
+
+<pre class="example">
+<http://example.org/bob#me> <http://xmlns.com/foaf/0.1/knows> <http://example.org/alice#me> .
+</pre>
+
+<p>In cases where the object of the triple is also an IRI
the property subelement has no content and
the object IRI is specified using the <code>rdf:resource</code>
-attribute (lines 8, 10-11, 15 and 18). When the object of the
+attribute (lines 8, 10-11, 15 and 18). For example, the triples
+specified by line 10:
+
+<blockquote>
+
+</blockquote>
+
+<p>When the object of the
triple is a literal the literal value is entered as content of the
property element (lines 9 and 14). The datatype is specified as
attribute of the property element (line 9). If the datatype is