+ numeric and boolean example per <a href="http://www.w3.org/mid/CAPqY83zZmmsiufFkn3M733L-xcCZs_Qm-tURkb---+WF3N1JPg@mail.gmail.com">Gavin's suggestion</a>
--- a/rdf-turtle/index.html Wed Mar 21 16:43:20 2012 -0400
+++ b/rdf-turtle/index.html Wed Mar 21 17:42:16 2012 -0400
@@ -478,7 +478,7 @@
<table class="separated">
<caption>Example numeric representations:</caption>
<tbody>
- <tr><th><a href="http://www.w3.org/TR/xmlschema-2/#boolean">xsd:boolean</a></th>
+ <tr><th><a href="http://www.w3.org/TR/xmlschema-2/#integer">xsd:integer</a></th>
<td><code>-5</code></td> <td><code>0</code></td> <td><code>1</code></td> <td><code>010</code></td> <td><code>+10</code></td></tr>
<tr><th><a href="http://www.w3.org/TR/xmlschema-2/#decimal">xsd:decimal</a></th>
<td><code>-5.0</code></td> <td><code>.0</code></td> <td><code>1.234567890</code></td> <td><code>010.0</code></td> <td><code>+10.0</code></td></tr>
@@ -487,6 +487,15 @@
</tbody>
</table>
+ <pre class="example"><script type="text/turtle">
+# this is a complete turtle document
+@prefix : <http://example.org/stats> .
+<http://somecountry.example/census2007>
+ :censusYear 2007 ; # xsd:integer
+ :birthRate 13.5 ; # xsd:decimal
+ :gdpDollars 14074.2E9 ; # xsd:double
+ :isLandlocked false . # xsd:boolean
+ </script></pre>
</section>
<section id="groups">