edit
authorGuus Schreiber <guus.schreiber@vu.nl>
Wed, 13 Nov 2013 01:23:19 +0100
changeset 1293 a56571930500
parent 1292 5533100a3a88
child 1294 7f8d5cf67dc7
edit
rdf-primer/index.html
--- a/rdf-primer/index.html	Wed Nov 13 01:20:10 2013 +0100
+++ b/rdf-primer/index.html	Wed Nov 13 01:23:19 2013 +0100
@@ -667,10 +667,11 @@
 http://example.org/bob#me http://xmlns.com/foaf/0.1/knows http://example.org/alice#me .
 </pre>
 
-<p>Line 9 is an example of a special kind of syntactic sugar. The "a" predicate
+<p>Line 9 shows an example of a special kind of syntactic sugar. The
+<code>a</code> predicate 
 is a shorthand for the property <code>rdf:type</code> which models the
 instance relation (see Table <a href="#table-rdf-schema">"RDF Schema
-constructs"</a>). The "a" shorthand is intended to match the human
+constructs"</a>). The <code>a</code> shorthand is intended to match the human
 intuition about <code>rdf:type</code>. <p>
 
 <p>In line 11 we see an example of a literal, in this case a date. The
@@ -686,7 +687,7 @@
 datatype. An example with language tag and datatype would be:
 
 <div class="example">
-  <code>"This is an English string"@en^^xsd:string</code
+  <code>"This is an English string"@en^^xsd:string</code>
 </div>
 
 <p>The above is by no means a full account of the Turtle syntax. For