--- a/rdf-primer/index.html	Tue Aug 13 19:55:40 2013 +0100
+++ b/rdf-primer/index.html	Tue Aug 13 20:02:31 2013 +0100
@@ -314,7 +314,6 @@
 
       <pre>
         <Bob> <is a> <person>.
-        <Alice> <is a> <person>.
         <Bob> <is a friend of> <Alice>.
         <Bob> <is born on> <the 4th of July 1990>.
         <Bob> <is interested in> <the Mona Lisa>.
@@ -364,7 +363,6 @@
 
       <pre>
 <http://example.org/bob#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>.
-<http://example.org/alice#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>.
 <http://example.org/bob#me> <http://xmlns.com/foaf/0.1/knows> <http://example.org/alice#me>.
 <http://example.org/bob#me> <http://schema.org/birthDate> "1990-07-04"^^<http://www.w3.org/2001/XMLSchema#date>.
 <http://example.org/bob#me> <http://xmlns.com/foaf/0.1/topic_interest> <http://www.wikidata.org/entity/Q12418>.
@@ -388,23 +386,26 @@
       literals. Turtle provides a good trade-off between ease of writing, ease of parsing and readability.</p>
 
       <pre>
+@base <http://example.org/>
 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 @prefix schema: <http://schema.org/> .
-@prefix : <http://example.org/#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix wd: <http://www.wikidata.org/entity/> .
 
-:me
+<bob#me>
   a foaf:Person ;
-  foaf:knows :alice ;
+  foaf:knows <alice#me> ;
   schema:birthDate "1990-07-04"^^xsd:date ;
-  :likes :the-mona-lisa .
-:alice
-  a foaf:Person .
-:da-vinci
+  foaf:topic_interest wd:Q12418 .
+
+<http://viaf.org/viaf/24604287/>
   a foaf:Person ;
-  foaf:made :the-mona-lisa .
-:the-mona-lisa
-  :on-display-in :the-louvre .
+  foaf:name "Leonardo da Vinci" ;
+  foaf:made wd:Q12418 .
+
+<http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619>
+  dcterms:subject wd:Q12418 .
       </pre>
 
     </section>