--- a/rdf-primer/index.html	Mon Apr 15 16:07:31 2013 +0100
+++ b/rdf-primer/index.html	Mon Apr 15 16:22:46 2013 +0100
@@ -298,7 +298,7 @@
 <http://example.org/#bob> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>.
 <http://example.org/#alice> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>.
 <http://example.org/#bob> <http://xmlns.com/foaf/0.1/knows> <http://example.org/#alice>.
-<http://example.org/#bob> <http://example.org/#birth-date> "1990-07-04"^^<http://www.w3.org/2001/XMLSchema#date>.
+<http://example.org/#bob> <http://schema.org/birthDate> "1990-07-04"^^<http://www.w3.org/2001/XMLSchema#date>.
 <http://example.org/#da-vinci> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>.
 <http://example.org/#da-vinci> <http://xmlns.com/foaf/0.1/made> <http://example.org/#the-mona-lisa>.
 <http://example.org/#the-mona-lisa> <http://example.org/#on-display-in> <http://example.org/#the-louvre>.
@@ -316,7 +316,7 @@
     we could write the first triple of our Mona Lisa example as follows.</p>
 
     <pre>
-<http://example.org/#bob> <http://example.org/#knows> <http://example.org/#alice> <http://example.org/#graph-1>.
+<http://example.org/#bob> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.org/#graph-1>.
     </pre>
 
     <h3>Turtle</h3>
@@ -327,13 +327,14 @@
 
     <pre>
 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#>
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix schema: <http://schema.org/> .
 @prefix : <http://example.org/#> .
 
 :bob
   a foaf:Person ;
   foaf:knows :alice ;
-  :birth-date "1990-07-04"^^xsd:date ;
+  schema:birthDate "1990-07-04"^^xsd:date ;
   :likes :the-mona-lisa .
 :alice
   a foaf:Person .